diff options
Diffstat (limited to 'po/ru/man3/mbtowc.3.po')
-rw-r--r-- | po/ru/man3/mbtowc.3.po | 394 |
1 files changed, 394 insertions, 0 deletions
diff --git a/po/ru/man3/mbtowc.3.po b/po/ru/man3/mbtowc.3.po new file mode 100644 index 00000000..8f1387dd --- /dev/null +++ b/po/ru/man3/mbtowc.3.po @@ -0,0 +1,394 @@ +# Russian translation of manpages +# This file is distributed under the same license as the manpages-l10n package. +# Copyright © of this file: +# aereiae <aereiae@gmail.com>, 2014. +# Alexey <a.chepugov@gmail.com>, 2015. +# Azamat Hackimov <azamat.hackimov@gmail.com>, 2013-2017. +# Dmitriy S. Seregin <dseregin@59.ru>, 2013. +# Dmitry Bolkhovskikh <d20052005@yandex.ru>, 2017. +# ITriskTI <ITriskTI@gmail.com>, 2013. +# Max Is <ismax799@gmail.com>, 2016. +# Yuri Kozlov <yuray@komyakino.ru>, 2011-2019. +# Иван Павлов <pavia00@gmail.com>, 2017. +# Малянов Евгений Викторович <maljanow@outlook.com>, 2014. +msgid "" +msgstr "" +"Project-Id-Version: manpages-l10n\n" +"POT-Creation-Date: 2024-03-01 17:01+0100\n" +"PO-Revision-Date: 2019-10-06 08:59+0300\n" +"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" +"Language-Team: Russian <man-pages-ru-talks@lists.sourceforge.net>\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: Lokalize 2.0\n" + +#. type: TH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy, no-wrap +#| msgid "B<mbtowc>()" +msgid "mbtowc" +msgstr "B<mbtowc>()" + +#. type: TH +#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "2023-10-31" +msgstr "31 октября 2023 г." + +#. type: TH +#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "Linux man-pages 6.06" +msgstr "Linux man-pages 6.06" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "NAME" +msgstr "ИМЯ" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "mbtowc - convert a multibyte sequence to a wide character" +msgstr "" +"mbtowc - преобразовывает мультибайтовую последовательность в широкий символ" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "LIBRARY" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "Standard C library (I<libc>, I<-lc>)" +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "SYNOPSIS" +msgstr "СИНТАКСИС" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<#include E<lt>stdlib.hE<gt>>\n" +msgstr "B<#include E<lt>stdlib.hE<gt>>\n" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy, no-wrap +#| msgid "B<int mbtowc(wchar_t *>I<pwc>B<, const char *>I<s>B<, size_t >I<n>B<);>\n" +msgid "B<int mbtowc(wchar_t *restrict >I<pwc>B<, const char >I<s>B<[restrict .>I<n>B<], size_t >I<n>B<);>\n" +msgstr "B<int mbtowc(wchar_t *>I<pwc>B<, const char *>I<s>B<, size_t >I<n>B<);>\n" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "DESCRIPTION" +msgstr "ОПИСАНИЕ" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "The main case for this function is when I<s> is not NULL and I<pwc> is " +#| "not NULL. In this case, the B<mbtowc>() function inspects at most I<n> " +#| "bytes of the multibyte string starting at I<s>, extracts the next " +#| "complete multibyte character, converts it to a wide character and stores " +#| "it at I<*pwc>. It updates an internal shift state known only to the " +#| "B<mbtowc>() function. If I<s> does not point to a null byte " +#| "(\\(aq\\e0\\(aq), it returns the number of bytes that were consumed from " +#| "I<s>, otherwise it returns 0." +msgid "" +"The main case for this function is when I<s> is not NULL and I<pwc> is not " +"NULL. In this case, the B<mbtowc>() function inspects at most I<n> bytes " +"of the multibyte string starting at I<s>, extracts the next complete " +"multibyte character, converts it to a wide character and stores it at " +"I<*pwc>. It updates an internal shift state known only to the B<mbtowc>() " +"function. If I<s> does not point to a null byte (\\[aq]\\e0\\[aq]), it " +"returns the number of bytes that were consumed from I<s>, otherwise it " +"returns 0." +msgstr "" +"Обычно в эту функцию передают I<s> и I<pwc> не равные NULL. В этом случае " +"функция B<mbtowc>() просматривает не более I<n> байт многобайтовой строки, " +"начиная с I<s>, извлекает следующий полный многобайтовый символ, преобразует " +"его в широкий символ и сохраняет его в I<*pwc>. Она обновляет внутренне " +"состояние сдвига, доступное только функции B<mbtowc>(). Если I<s> не " +"указывает на байт null (\\(aq\\e0\\(aq), то она возвращает количество байт, " +"которые были потрачены из I<s>, в противном случае возвращается 0." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"If the I<n> bytes starting at I<s> do not contain a complete multibyte " +"character, or if they contain an invalid multibyte sequence, B<mbtowc>() " +"returns -1. This can happen even if I<n> E<gt>= I<MB_CUR_MAX>, if the " +"multibyte string contains redundant shift sequences." +msgstr "" +"Если в I<n> байтах, начиная с I<s>, не содержится полного многобайтового " +"символа или если в них содержится некорректный многобайтовый символ, то " +"B<mbtowc>() возвращает -1. Это может произойти даже если I<n> E<gt>= " +"I<MB_CUR_MAX>, если в многобайтовой строке содержится лишние сдвиговые " +"последовательности." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"A different case is when I<s> is not NULL but I<pwc> is NULL. In this case, " +"the B<mbtowc>() function behaves as above, except that it does not store " +"the converted wide character in memory." +msgstr "" +"Ещё случай, когда I<s> не равно NULL, а I<pwc> равно NULL. В этом случае " +"функция B<mbtowc>() действует как описано выше, но не сохраняет " +"преобразованный широкий символ в памяти." + +#. The Dinkumware doc and the Single UNIX specification say this, but +#. glibc doesn't implement this. +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"A third case is when I<s> is NULL. In this case, I<pwc> and I<n> are " +"ignored. The B<mbtowc>() function resets the shift state, only known to " +"this function, to the initial state, and returns nonzero if the encoding has " +"nontrivial shift state, or zero if the encoding is stateless." +msgstr "" +"И третий вариант, когда I<s> равно NULL. В этом случае I<pwc> и I<n> " +"игнорируются. Функция B<mbtowc>() сбрасывает состояние сдвига, известное " +"только ей, в начальное состояние и возвращает не ноль, если кодировка имеет " +"непростое состояние сдвига, или ноль, если кодировка не имеет состояний." + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "RETURN VALUE" +msgstr "ВОЗВРАЩАЕМОЕ ЗНАЧЕНИЕ" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"If I<s> is not NULL, the B<mbtowc>() function returns the number of " +"consumed bytes starting at I<s>, or 0 if I<s> points to a null byte, or -1 " +"upon failure." +msgstr "" +"Если I<s> не равно NULL, то функция B<mbtowc>() возвращает количество " +"потраченных байт, начиная с I<s>, или 0, если I<s> указывает на байт null, " +"или -1 — при ошибке." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"If I<s> is NULL, the B<mbtowc>() function returns nonzero if the encoding " +"has nontrivial shift state, or zero if the encoding is stateless." +msgstr "" +"Если значение I<s> равно NULL, то функция B<mbtowc>() возвращает не ноль, " +"если кодировка имеет необычное смещение, или ноль, если кодировка не имеет " +"смещения." + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATTRIBUTES" +msgstr "АТРИБУТЫ" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"For an explanation of the terms used in this section, see B<attributes>(7)." +msgstr "Описание терминов данного раздела смотрите в B<attributes>(7)." + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Interface" +msgstr "Интерфейс" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Attribute" +msgstr "Атрибут" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Value" +msgstr "Значение" + +#. type: tbl table +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed +#, no-wrap +msgid ".na\n" +msgstr ".na\n" + +#. type: tbl table +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed +#, no-wrap +msgid ".nh\n" +msgstr ".nh\n" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<mbtowc>()" +msgstr "B<mbtowc>()" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Thread safety" +msgstr "Безвредность в нитях" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "MT-Unsafe race" +msgstr "MT-Unsafe race" + +#. type: SH +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "VERSIONS" +msgstr "ВЕРСИИ" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"This function is not multithread safe. The function B<mbrtowc>(3) provides " +"a better interface to the same functionality." +msgstr "" +"Данную функцию небезопасно использовать в нитях. Для этого лучше подходит " +"функция B<mbrtowc>(3) с тем же интерфейсом." + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "STANDARDS" +msgstr "СТАНДАРТЫ" + +#. type: Plain text +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +msgid "C11, POSIX.1-2008." +msgstr "C11, POSIX.1-2008." + +#. type: SH +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "HISTORY" +msgstr "ИСТОРИЯ" + +#. type: Plain text +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +msgid "POSIX.1-2001, C99." +msgstr "POSIX.1-2001, C99." + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "NOTES" +msgstr "ЗАМЕЧАНИЯ" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The behavior of B<mbtowc>() depends on the B<LC_CTYPE> category of the " +"current locale." +msgstr "Поведение B<mbtowc>() зависит от категории B<LC_CTYPE> текущей локали." + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "SEE ALSO" +msgstr "СМ. ТАКЖЕ" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"B<MB_CUR_MAX>(3), B<mblen>(3), B<mbrtowc>(3), B<mbstowcs>(3), " +"B<wcstombs>(3), B<wctomb>(3)" +msgstr "" +"B<MB_CUR_MAX>(3), B<mblen>(3), B<mbrtowc>(3), B<mbstowcs>(3), " +"B<wcstombs>(3), B<wctomb>(3)" + +#. type: TH +#: debian-bookworm +#, no-wrap +msgid "2023-02-05" +msgstr "5 февраля 2023 г." + +#. type: TH +#: debian-bookworm +#, no-wrap +msgid "Linux man-pages 6.03" +msgstr "Linux man-pages 6.03" + +#. type: Plain text +#: debian-bookworm +msgid "POSIX.1-2001, POSIX.1-2008, C99." +msgstr "POSIX.1-2001, POSIX.1-2008, C99." + +#. type: TH +#: debian-unstable opensuse-tumbleweed +#, no-wrap +msgid "2023-07-20" +msgstr "20 июля 2023 г." + +#. type: TH +#: debian-unstable opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages 6.05.01" +msgstr "Linux man-pages 6.05.01" + +#. type: TH +#: opensuse-leap-15-6 +#, no-wrap +msgid "2023-03-30" +msgstr "30 марта 2023 г." + +#. type: TH +#: opensuse-leap-15-6 +#, no-wrap +msgid "Linux man-pages 6.04" +msgstr "Linux man-pages 6.04" |