Translate continues.

This commit is contained in:
Aleksandr Orefkov 2025-11-17 15:35:34 +03:00
parent 170e343391
commit 1f0e64432e
6 changed files with 2983 additions and 10 deletions

View File

@ -74,7 +74,7 @@ PROJECT_ICON =
# entered, it will be relative to the location where Doxygen was started. If # entered, it will be relative to the location where Doxygen was started. If
# left blank the current directory will be used. # left blank the current directory will be used.
OUTPUT_DIRECTORY = ../_build/docs OUTPUT_DIRECTORY = ../_build/docs/en
# If the CREATE_SUBDIRS tag is set to YES then Doxygen will create up to 4096 # If the CREATE_SUBDIRS tag is set to YES then Doxygen will create up to 4096
# sub-directories (in 2 levels) under the output directory of each output format # sub-directories (in 2 levels) under the output directory of each output format
@ -1390,7 +1390,7 @@ GENERATE_HTML = YES
# The default directory is: html. # The default directory is: html.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
HTML_OUTPUT = html HTML_OUTPUT = .
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
# generated HTML page (for example: .htm, .php, .asp). # generated HTML page (for example: .htm, .php, .asp).

2971
docs/Doxyfile_ru Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
# Strings in C++ # Strings in C++
(, what's wrong with you?) (, what's wrong with you?)
[On Russian|По-русски](overview_ru.md) <span class="obfuscator"><a href="overview_ru.md">On Russian | По-русски</a></span>
<cite> <cite>
In a 1991 retrospective on the history of C++, its creator Bjarne Stroustrup called the lack of a standard string type In a 1991 retrospective on the history of C++, its creator Bjarne Stroustrup called the lack of a standard string type

View File

@ -1,7 +1,7 @@
# Строки в С++ # Строки в С++
(, что с вами не так?) (, что с вами не так?)
[On English|По-английски](overview.md) <span class="obfuscator"><a href="overview.md">On English | По-английски</a></span>
<cite> <cite>
В ретроспективе 1991 года по истории C++ его создатель Бьярне Страуструп назвал отсутствие стандартного строкового типа В ретроспективе 1991 года по истории C++ его создатель Бьярне Страуструп назвал отсутствие стандартного строкового типа

View File

@ -3,7 +3,7 @@
Version 1.2.4. Version 1.2.4.
[On Russian|По-русски](readme_ru.md) <span class="obfuscator"><a href="readme_ru.md">On Russian | По-русски</a></span>
This library contains the implementation of several types of string objects and various algorithms for working with strings. This library contains the implementation of several types of string objects and various algorithms for working with strings.
@ -88,8 +88,9 @@ the sizes of SSO buffers in objects are smaller.
- [Benchmark results](https://snegopat.ru/simstr/results.html) - [Benchmark results](https://snegopat.ru/simstr/results.html)
## Usage examples ## Usage examples
While no separate usage examples have been prepared, you can look at the texts of [tests](tests/test_str.cpp), While no separate usage examples have been prepared, you can look at the texts of [tests](https://github.com/orefkov/simstr/blob/main/tests/test_str.cpp),
[benchmarks](bench/bench_str.cpp), and [html preparation utilities](bench/process_result.cpp) from the benchmark results. [benchmarks](https://github.com/orefkov/simstr/blob/main/bench/bench_str.cpp), and
[html preparation utilities](https://github.com/orefkov/simstr/blob/main/bench/process_result.cpp) from the benchmark results.
Also, simstr is used in my [v8sqlite](https://github.com/orefkov/v8sqlite) project Also, simstr is used in my [v8sqlite](https://github.com/orefkov/v8sqlite) project
## Generated documentation ## Generated documentation

View File

@ -3,7 +3,7 @@
Версия 1.2.4. Версия 1.2.4.
[On English|По-английски](readme.md) <span class="obfuscator"><a href="readme.md">On English | По-английски</a></span>
В этой библиотеке содержится реализация нескольких видов строковых объектов и различных алгоритмов для работы со строками. В этой библиотеке содержится реализация нескольких видов строковых объектов и различных алгоритмов для работы со строками.
@ -88,8 +88,9 @@ Windows и Linux (в WSL), с использованием компилятор
- [Результаты бенчмарков](https://snegopat.ru/simstr/results.html) - [Результаты бенчмарков](https://snegopat.ru/simstr/results.html)
## Примеры использования ## Примеры использования
Пока отдельных примеров использования не подготовлено, можно посмотреть тексты [тестов](tests/test_str.cpp), Пока отдельных примеров использования не подготовлено, можно посмотреть тексты [тестов](https://github.com/orefkov/simstr/blob/main/tests/test_str.cpp),
[бенчмарков](bench/bench_str.cpp), и [утилиты подготовки html](bench/process_result.cpp) из результатов бенчмарков. [бенчмарков](https://github.com/orefkov/simstr/blob/main/bench/bench_str.cpp), и
[утилиты подготовки html](https://github.com/orefkov/simstr/blob/main/bench/process_result.cpp) из результатов бенчмарков.
Также simstr используется в моём проекте [v8sqlite](https://github.com/orefkov/v8sqlite) Также simstr используется в моём проекте [v8sqlite](https://github.com/orefkov/v8sqlite)
## Сгенерированная документация ## Сгенерированная документация