mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
Merge branch '3065_italic'
* 3065_italic: Update po/*.po files. Ticket #3065: support of italic text.
This commit is contained in:
commit
e7e3aed174
1
AUTHORS
1
AUTHORS
@ -61,6 +61,7 @@ Antonio Palama, DOS port <palama@posso.dm.unipi.it>
|
||||
|
||||
Egmont Koblinger <egmont@gmail.com>
|
||||
Support of 256 colors
|
||||
Support of italic text
|
||||
Support of extended mouse clicks beyond 223 column
|
||||
Support of bracketed paste mode of xterm
|
||||
(http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Bracketed%20Paste%20Mode)
|
||||
|
@ -3609,7 +3609,7 @@ color16 to color255, or as rgb000 to rgb555 and gray0 to gray23. Example:
|
||||
base_color=normal=white,default:marked=magenta,default
|
||||
.fi
|
||||
.PP
|
||||
Attributes can be any of bold, underline, reverse and blink, appended by a
|
||||
Attributes can be any of bold, italic, underline, reverse and blink, appended by a
|
||||
plus sign if more than one are desired. The special word "none" means no
|
||||
attributes, without attempting to fall back to base_color. Example:
|
||||
.PP
|
||||
|
@ -439,7 +439,7 @@ uses the color before the slash. See cooledit(1) for supported
|
||||
.B cooledit
|
||||
colors.
|
||||
.PP
|
||||
Attributes can be any of bold, underline, reverse and blink, appended by a
|
||||
Attributes can be any of bold, italic, underline, reverse and blink, appended by a
|
||||
plus sign if more than one are desired.
|
||||
.PP
|
||||
Comments may be put on a separate line starting with the hash sign (#).
|
||||
|
@ -3999,7 +3999,7 @@ lightgray и white. Для прозрачного фона используют
|
||||
base_color=normal=white,default:marked=magenta,default
|
||||
.fi
|
||||
.PP
|
||||
Атрибуты обозначаются словами "bold", "underline", "reverse" и "blink".
|
||||
Атрибуты обозначаются словами "bold", "italic", "underline", "reverse" и "blink".
|
||||
Чтобы использовать несколько атрибутов, их надо перечислить через символ "+".
|
||||
The special word "none" menas no attributes, without attempting to fall back
|
||||
to base_color. Пример:
|
||||
|
@ -83,6 +83,9 @@ mc_tty_color_table_t const color_table[] = {
|
||||
|
||||
mc_tty_color_table_t const attributes_table[] = {
|
||||
{"bold", A_BOLD},
|
||||
#ifdef A_ITALIC /* available since ncurses-5.9-20130831 / slang-pre2.3.0-107 */
|
||||
{"italic", A_ITALIC},
|
||||
#endif /* A_ITALIC */
|
||||
{"underline", A_UNDERLINE},
|
||||
{"reverse", A_REVERSE},
|
||||
{"blink", A_BLINK},
|
||||
|
@ -11,12 +11,17 @@
|
||||
/*** typedefs(not structures) and defined constants **********************************************/
|
||||
|
||||
/* When using Slang with color, we have all the indexes free but
|
||||
* those defined here (A_BOLD, A_UNDERLINE, A_REVERSE, A_BLINK)
|
||||
* those defined here (A_BOLD, A_ITALIC, A_UNDERLINE, A_REVERSE, A_BLINK)
|
||||
*/
|
||||
|
||||
#ifndef A_BOLD
|
||||
#define A_BOLD SLTT_BOLD_MASK
|
||||
#endif /* A_BOLD */
|
||||
#ifdef SLTT_ITALIC_MASK /* available since slang-pre2.3.0-107 */
|
||||
#ifndef A_ITALIC
|
||||
#define A_ITALIC SLTT_ITALIC_MASK
|
||||
#endif /* A_ITALIC */
|
||||
#endif /* SLTT_ITALIC_MASK */
|
||||
#ifndef A_UNDERLINE
|
||||
#define A_UNDERLINE SLTT_ULINE_MASK
|
||||
#endif /* A_UNDERLINE */
|
||||
|
@ -47,9 +47,12 @@
|
||||
#
|
||||
# Following the foreground and background colors, the third (optional) value
|
||||
# can specify special attributes to enable. Valid values are bold, underline,
|
||||
# reverse and blink. Append more with a plus sign, e.g. "underline+bold".
|
||||
# italic, reverse and blink. Append more with a plus sign, e.g. "bold+italic".
|
||||
# Leaving the field empty makes it fall back to the attributes of _default_.
|
||||
# Use any other word (e.g. "none") to prevent fallback and disable all flags.
|
||||
#
|
||||
# Italic support requires a recent enough ncurses (>= 5.9.20130831) or slang
|
||||
# (>= 2.3). All attributes are subject to support by the terminal emulator.
|
||||
|
||||
[skin]
|
||||
description = Sand skin using 256 colors
|
||||
@ -81,8 +84,8 @@
|
||||
[core]
|
||||
_default_ = black;rgb554
|
||||
selected = ;rgb452
|
||||
marked = rgb400
|
||||
markselect = rgb400;rgb452
|
||||
marked = rgb400;;italic
|
||||
markselect = rgb400;rgb452;italic
|
||||
gauge = ;rgb452
|
||||
input = ;rgb452
|
||||
inputunchanged = gray;rgb452
|
||||
@ -90,14 +93,14 @@
|
||||
disabled = gray;rgb553
|
||||
reverse = ;rgb452
|
||||
commandlinemark = white;gray
|
||||
header = red
|
||||
header = red;;italic
|
||||
|
||||
[dialog]
|
||||
_default_ = black;rgb553
|
||||
dfocus = ;rgb452
|
||||
dhotnormal = ;;underline
|
||||
dhotfocus = ;rgb452;underline
|
||||
dtitle = ;;underline
|
||||
dtitle = ;;italic+underline
|
||||
|
||||
[error]
|
||||
_default_ = rgb554;rgb320;bold
|
||||
@ -105,7 +108,7 @@
|
||||
errdfocus = rgb000;rgb452;bold
|
||||
errdhotnormal = ;;bold+underline
|
||||
errdhotfocus = rgb000;rgb452;bold+underline
|
||||
errdtitle = ;;bold+underline
|
||||
errdtitle = ;;bold+italic+underline
|
||||
|
||||
[filehighlight]
|
||||
directory =
|
||||
@ -126,28 +129,28 @@
|
||||
database = rgb421
|
||||
|
||||
[menu]
|
||||
_default_ = black;rgb452
|
||||
_default_ = black;rgb452;italic
|
||||
menusel = ;rgb551
|
||||
menuhot = ;;underline
|
||||
menuhotsel = ;rgb551;underline
|
||||
menuhot = ;;italic+underline
|
||||
menuhotsel = ;rgb551;italic+underline
|
||||
menuinactive =
|
||||
|
||||
[popupmenu]
|
||||
_default_ = black;rgb553
|
||||
menusel = ;rgb452;underline
|
||||
menutitle = ;;underline
|
||||
menutitle = ;;italic+underline
|
||||
|
||||
[buttonbar]
|
||||
hotkey = black;rgb554
|
||||
button = black;rgb452
|
||||
hotkey = black;rgb554;italic
|
||||
button = black;rgb452;italic
|
||||
|
||||
[statusbar]
|
||||
_default_ = black;rgb452
|
||||
_default_ = black;rgb452;italic
|
||||
|
||||
[help]
|
||||
_default_ = black;rgb553
|
||||
helpitalic = green
|
||||
helpbold = red
|
||||
helpitalic = green;;italic
|
||||
helpbold = red;;bold
|
||||
helplink = blue;;underline
|
||||
helpslink = blue;;reverse
|
||||
helptitle = ;;underline
|
||||
@ -155,7 +158,7 @@
|
||||
[editor]
|
||||
_default_ = black;rgb554
|
||||
editbold = rgb400
|
||||
editmarked = ;rgb452
|
||||
editmarked = ;rgb452;italic
|
||||
editwhitespace = rgb400;rgb553
|
||||
editlinestate = ;rgb553
|
||||
bookmark = ;rgb551
|
||||
|
10
po/az.po
10
po/az.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -672,7 +672,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3464,12 +3464,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/be.po
20
po/be.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Belarusian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -683,6 +683,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -693,7 +694,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Звычайныя колеры:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3628,14 +3629,6 @@ msgstr "Макрас «%%var» ня мае прадвызначана значэ
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Макрас «%%var» ня мае зьменнае"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Немагчыма адчыніць файл «%s»\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "«%s» ня мае адпаведных запісаў"
|
||||
@ -4388,6 +4381,13 @@ msgstr "Ці працягваць ад пачатку?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Немагчыма адчыніць файл «%s»\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: хібны порт."
|
||||
|
||||
|
10
po/bg.po
10
po/bg.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -673,7 +673,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3472,12 +3472,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
19
po/ca.po
19
po/ca.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -678,7 +678,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3477,14 +3477,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"No es pot obrir el fitxer%s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
@ -4221,3 +4213,10 @@ msgstr ""
|
||||
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "No es pot obrir el fitxer%s\n"
|
||||
#~ "%s"
|
||||
|
20
po/cs.po
20
po/cs.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/projects/p/mc/language/cs/)\n"
|
||||
@ -678,6 +678,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -688,7 +689,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Standartní barvy:\n"
|
||||
" černá, šedá, červená, světlečervená, zelená, světlezelená, hnědá,\n"
|
||||
@ -3605,14 +3606,6 @@ msgstr "Makro %%var nemá implicitní hodnotu"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Makro %%var nemá proměnnou"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Nelze otevřít soubor %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "V %s nejsou odpovídající položky"
|
||||
@ -4362,6 +4355,13 @@ msgstr ""
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Nelze otevřít soubor %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "Cannot spawn child process"
|
||||
#~ msgstr "Nelze vytvořit proces potomka"
|
||||
|
||||
|
19
po/da.po
19
po/da.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/mc/language/da/)\n"
|
||||
@ -680,7 +680,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3583,14 +3583,6 @@ msgstr "Makroen %%var har ingen standard"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Makroen %%var har ingen variabel"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kan ikke åbne fil %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Ingen egnede punkter fundet i %s"
|
||||
@ -4340,6 +4332,13 @@ msgstr ""
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Kan ikke åbne fil %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "Cannot spawn child process"
|
||||
#~ msgstr "Kan ikke spawn underproces"
|
||||
|
||||
|
19
po/de.po
19
po/de.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/mc/language/de/)\n"
|
||||
@ -684,7 +684,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3591,14 +3591,6 @@ msgstr "Das %%var-Makro hat keinen Standardwert"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Das %%var-Makro hat keine Variable"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kann Datei %s nicht öffnen\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Keine verwendbaren Einträge in %s gefunden"
|
||||
@ -4350,6 +4342,13 @@ msgstr ""
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Kann Datei %s nicht öffnen\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "Cannot spawn child process"
|
||||
#~ msgstr "Kann Kindprozess nicht hervorbringen"
|
||||
|
||||
|
10
po/de_CH.po
10
po/de_CH.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/mc/"
|
||||
@ -664,7 +664,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3449,12 +3449,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
19
po/el.po
19
po/el.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/mc/language/el/)\n"
|
||||
@ -687,7 +687,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3555,14 +3555,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Αδυναμία ανοίγματος αρχείου %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Δε βρέθηκαν καταχωρήσεις στο %s"
|
||||
@ -4298,3 +4290,10 @@ msgstr "Συνέχεια από την αρχή;"
|
||||
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Αδυναμία ανοίγματος αρχείου %s\n"
|
||||
#~ "%s"
|
||||
|
10
po/en_GB.po
10
po/en_GB.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/"
|
||||
@ -664,7 +664,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3449,12 +3449,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/eo.po
20
po/eo.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -700,6 +700,7 @@ msgstr ""
|
||||
"helpslink\n"
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -710,7 +711,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Ordinaraj koloroj:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3650,14 +3651,6 @@ msgstr "La makroo %%var havas neniun aprioraĵon"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "La makroo %%var havas neniun variablon"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Ne eblas malfermi dosieron%s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Neniuj taŭgaj eroj trovitaj en %s"
|
||||
@ -4417,6 +4410,13 @@ msgstr "Ĉu deiri de la komenco?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Ne eblas atingi lokan kopion de /ftp://some.host/editme.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Ne eblas malfermi dosieron%s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Nevalida pordnumero."
|
||||
|
||||
|
20
po/es.po
20
po/es.po
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -706,6 +706,7 @@ msgstr ""
|
||||
" Ayuda: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -716,7 +717,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Colores estándar:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3657,14 +3658,6 @@ msgstr "La macro %%var no tiene valor predeterminado"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "La macro %%var no contiene variables"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Imposible abrir el archivo %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "No se encuentran entradas apropiadas en %s"
|
||||
@ -4424,6 +4417,13 @@ msgstr "¿Continuar desde el principio?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Imposible obtener una copia local de /ftp://some.host/editme.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Imposible abrir el archivo %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Número de puerto no válido"
|
||||
|
||||
|
20
po/et.po
20
po/et.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -699,6 +699,7 @@ msgstr ""
|
||||
" Abi: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -709,7 +710,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Standardvärvid:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3644,14 +3645,6 @@ msgstr "Makrol %%var puudub vaikeväärtus"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Makrol %%var puudub muutuja"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Faili %s avamine nurjus\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Failist %s ei leitud sobivaid kirjeid"
|
||||
@ -4411,6 +4404,13 @@ msgstr "Kas jätkata algusest?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Kohaliku koopia hankimine failist /ftp://some.host/editme.txt nurjus"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Faili %s avamine nurjus\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: vigane pordi väärtus."
|
||||
|
||||
|
20
po/eu.po
20
po/eu.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/projects/p/mc/language/eu/)\n"
|
||||
@ -680,6 +680,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -690,7 +691,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Kolore estandarrak:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3614,14 +3615,6 @@ msgstr "%%var makroak ez dauka lehenetsitakorik"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "%%var makroak ez dauka aldagairik"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"%s fitxategia ezin ireki\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "%s-(e)n ez dira sarrera egokiak aurkitu"
|
||||
@ -4378,6 +4371,13 @@ msgstr "Hasieratik jarraitu?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "%s fitxategia ezin ireki\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "Cannot spawn child process"
|
||||
#~ msgstr "Ezin sortu ume prozesua"
|
||||
|
||||
|
10
po/fa.po
10
po/fa.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -670,7 +670,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3450,12 +3450,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/fi.po
10
po/fi.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -676,7 +676,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3461,12 +3461,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/fi_FI.po
10
po/fi_FI.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2013-03-13 08:51+0000\n"
|
||||
"Last-Translator: Slava Zanko <slavazanko@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -685,7 +685,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3471,12 +3471,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
19
po/fr.po
19
po/fr.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/mc/language/fr/)\n"
|
||||
@ -684,7 +684,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3571,14 +3571,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Impossible d'ouvrir le fichier %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
@ -4331,6 +4323,13 @@ msgstr "Continuer à partir de début ?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Impossible d'ouvrir le fichier %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Numéro de port invalide."
|
||||
|
||||
|
20
po/gl.po
20
po/gl.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -686,6 +686,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -696,7 +697,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Cores estándar:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3636,14 +3637,6 @@ msgstr "A macro %%var non ten valor predeterminado"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "A macro %%var non contén variábeis"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Non é posíbel abrir o ficheiro %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Non se atopan entradas apropiadas en %s"
|
||||
@ -4405,6 +4398,13 @@ msgstr "Continuar desde o principio?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Non é posíbel obter unha copia local de /ftp://some.host/editme.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Non é posíbel abrir o ficheiro %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: porto incorrecto."
|
||||
|
||||
|
10
po/hr.po
10
po/hr.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -665,7 +665,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3455,12 +3455,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/hu.po
20
po/hu.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -685,6 +685,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -695,7 +696,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Alap színek:\\n\n"
|
||||
" black (fekete), gray (szürke), red (piros), brightred (élénkpiros),\\n\n"
|
||||
@ -3636,14 +3637,6 @@ msgstr "A %%var makrónak nincs alapértéke"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "A %%var makrónak nincs változója"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"A(z) %s fájl nem megnyitható\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Nincsenek megfelelő bejegyzések ebben: %s"
|
||||
@ -4404,6 +4397,13 @@ msgstr "Folytatás az elejéről?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Nem sikerült behozni /ftp://some.host/editme.txt helyi másolatát"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "A(z) %s fájl nem megnyitható\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Érvénytelen portszám."
|
||||
|
||||
|
10
po/ia.po
10
po/ia.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Interlingua (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -683,7 +683,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3477,12 +3477,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/id.po
10
po/id.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -675,7 +675,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3455,12 +3455,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/it.po
20
po/it.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2015-02-14 21:18+0100\n"
|
||||
"Last-Translator: Marco Ciampa <ciampix@libero.it>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -699,6 +699,7 @@ msgstr ""
|
||||
" Aiuto: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -709,7 +710,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Colori standard:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3648,14 +3649,6 @@ msgstr "La macro %%var non ha valore predefinito"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Le macro %%var non ha variabile"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Impossibile aprire il file %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Non trovo voci appropriate in %s"
|
||||
@ -4416,3 +4409,10 @@ msgstr "Continuare dall'inizio?"
|
||||
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Impossibile ricevere copia locale di /ftp://un.host/modificami.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Impossibile aprire il file %s\n"
|
||||
#~ "%s"
|
||||
|
10
po/ja.po
10
po/ja.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -682,7 +682,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3474,12 +3474,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/ka.po
10
po/ka.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -668,7 +668,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3449,12 +3449,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/kk.po
10
po/kk.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/projects/p/mc/language/kk/)\n"
|
||||
@ -663,7 +663,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3443,12 +3443,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/ko.po
10
po/ko.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/projects/p/mc/language/ko/)\n"
|
||||
@ -675,7 +675,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3461,12 +3461,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/lt.po
10
po/lt.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -674,7 +674,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3480,12 +3480,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/lv.po
10
po/lv.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -673,7 +673,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3471,12 +3471,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
80
po/mc.pot
80
po/mc.pot
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mc 4.8.13-45-g3bb0b4a\n"
|
||||
"Project-Id-Version: mc 4.8.13-85-g45d135d\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -587,7 +587,7 @@ msgstr ""
|
||||
#: src/editor/editcmd.c:3455 src/editor/editcmd.c:3484
|
||||
#: src/editor/editcmd_dialogs.c:479 src/execute.c:135
|
||||
#: src/filemanager/file.c:1660 src/filemanager/panel.c:4408 src/help.c:362
|
||||
#: src/main.c:410 src/subshell.c:378 src/subshell.c:1053
|
||||
#: src/main.c:410 src/subshell.c:378 src/subshell.c:1054
|
||||
#: src/viewer/actions_cmd.c:417
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
@ -700,8 +700,8 @@ msgstr ""
|
||||
#: src/filemanager/filegui.c:438 src/filemanager/hotlist.c:1121
|
||||
#: src/filemanager/hotlist.c:1138 src/filemanager/midnight.c:1037
|
||||
#: src/filemanager/midnight.c:1045 src/filemanager/panel.c:2765
|
||||
#: src/filemanager/tree.c:875 src/subshell.c:1055 src/viewer/actions_cmd.c:614
|
||||
#: src/viewer/actions_cmd.c:620 src/viewer/search.c:358
|
||||
#: src/filemanager/tree.c:875 src/subshell.c:1056 src/viewer/actions_cmd.c:617
|
||||
#: src/viewer/actions_cmd.c:623 src/viewer/search.c:358
|
||||
msgid "&Yes"
|
||||
msgstr ""
|
||||
|
||||
@ -712,8 +712,8 @@ msgstr ""
|
||||
#: src/filemanager/filegui.c:440 src/filemanager/hotlist.c:1121
|
||||
#: src/filemanager/hotlist.c:1138 src/filemanager/midnight.c:1037
|
||||
#: src/filemanager/midnight.c:1045 src/filemanager/panel.c:2765
|
||||
#: src/filemanager/tree.c:875 src/subshell.c:1055 src/viewer/actions_cmd.c:614
|
||||
#: src/viewer/actions_cmd.c:620 src/viewer/search.c:359
|
||||
#: src/filemanager/tree.c:875 src/subshell.c:1056 src/viewer/actions_cmd.c:617
|
||||
#: src/viewer/actions_cmd.c:623 src/viewer/search.c:359
|
||||
msgid "&No"
|
||||
msgstr ""
|
||||
|
||||
@ -735,7 +735,7 @@ msgstr ""
|
||||
#: src/filemanager/filegui.c:1250 src/filemanager/find.c:524
|
||||
#: src/filemanager/hotlist.c:191 src/filemanager/hotlist.c:977
|
||||
#: src/filemanager/hotlist.c:1039 src/filemanager/layout.c:461
|
||||
#: src/filemanager/panelize.c:143 src/learn.c:254 src/viewer/hex.c:407
|
||||
#: src/filemanager/panelize.c:143 src/learn.c:254 src/viewer/hex.c:433
|
||||
msgid "&Cancel"
|
||||
msgstr ""
|
||||
|
||||
@ -900,7 +900,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/args.c:377
|
||||
@ -926,7 +926,7 @@ msgid ""
|
||||
"as tickets at www.midnight-commander.org\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/args.c:405 src/filemanager/midnight.c:1686 src/textconf.c:140
|
||||
#: src/args.c:405 src/filemanager/midnight.c:1696 src/textconf.c:140
|
||||
#, c-format
|
||||
msgid "GNU Midnight Commander %s\n"
|
||||
msgstr ""
|
||||
@ -1110,7 +1110,7 @@ msgid "Enter line:"
|
||||
msgstr ""
|
||||
|
||||
#: src/diffviewer/ydiff.c:2952 src/editor/editwidget.c:976
|
||||
#: src/filemanager/midnight.c:1642 src/filemanager/tree.c:1206 src/help.c:1145
|
||||
#: src/filemanager/midnight.c:1652 src/filemanager/tree.c:1206 src/help.c:1145
|
||||
#: src/viewer/display.c:85
|
||||
msgid "ButtonBar|Help"
|
||||
msgstr ""
|
||||
@ -1120,7 +1120,7 @@ msgstr ""
|
||||
msgid "ButtonBar|Save"
|
||||
msgstr ""
|
||||
|
||||
#: src/diffviewer/ydiff.c:2954 src/filemanager/midnight.c:1645
|
||||
#: src/diffviewer/ydiff.c:2954 src/filemanager/midnight.c:1655
|
||||
#: src/viewer/display.c:92
|
||||
msgid "ButtonBar|Edit"
|
||||
msgstr ""
|
||||
@ -1139,13 +1139,13 @@ msgid "ButtonBar|Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/diffviewer/ydiff.c:2958 src/editor/editwidget.c:985
|
||||
#: src/filemanager/midnight.c:1651 src/help.c:1154 src/viewer/display.c:119
|
||||
#: src/filemanager/midnight.c:1661 src/help.c:1154 src/viewer/display.c:119
|
||||
#: src/viewer/display.c:122
|
||||
msgid "ButtonBar|Quit"
|
||||
msgstr ""
|
||||
|
||||
#: src/diffviewer/ydiff.c:3095 src/editor/editcmd.c:2862
|
||||
#: src/viewer/actions_cmd.c:612 src/viewer/actions_cmd.c:618
|
||||
#: src/viewer/actions_cmd.c:615 src/viewer/actions_cmd.c:621
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
@ -1400,7 +1400,7 @@ msgstr ""
|
||||
msgid "Confirm save file: \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/editcmd.c:2079 src/viewer/hex.c:395 src/viewer/hex.c:407
|
||||
#: src/editor/editcmd.c:2079 src/viewer/hex.c:421 src/viewer/hex.c:433
|
||||
msgid "Save file"
|
||||
msgstr ""
|
||||
|
||||
@ -2047,7 +2047,7 @@ msgstr ""
|
||||
msgid "ButtonBar|Replac"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/editwidget.c:980 src/filemanager/midnight.c:1646
|
||||
#: src/editor/editwidget.c:980 src/filemanager/midnight.c:1656
|
||||
#: src/filemanager/tree.c:1211
|
||||
msgid "ButtonBar|Copy"
|
||||
msgstr ""
|
||||
@ -2056,11 +2056,11 @@ msgstr ""
|
||||
msgid "ButtonBar|Move"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/editwidget.c:983 src/filemanager/midnight.c:1649
|
||||
#: src/editor/editwidget.c:983 src/filemanager/midnight.c:1659
|
||||
msgid "ButtonBar|Delete"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/editwidget.c:984 src/filemanager/midnight.c:1650
|
||||
#: src/editor/editwidget.c:984 src/filemanager/midnight.c:1660
|
||||
msgid "ButtonBar|PullDn"
|
||||
msgstr ""
|
||||
|
||||
@ -2188,7 +2188,8 @@ msgstr ""
|
||||
msgid "Load syntax file"
|
||||
msgstr ""
|
||||
|
||||
#: src/editor/syntax.c:1501 src/filemanager/usermenu.c:946 src/help.c:1086
|
||||
#: src/editor/syntax.c:1501 src/filemanager/usermenu.c:946
|
||||
#: src/filemanager/usermenu.c:984 src/help.c:1086
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file %s\n"
|
||||
@ -3149,7 +3150,7 @@ msgstr ""
|
||||
msgid "Ski&p all"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/file.c:677 src/viewer/hex.c:407
|
||||
#: src/filemanager/file.c:677 src/viewer/hex.c:433
|
||||
msgid "&Retry"
|
||||
msgstr ""
|
||||
|
||||
@ -4198,35 +4199,35 @@ msgstr ""
|
||||
msgid "Do you really want to quit the Midnight Commander?"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1631
|
||||
#: src/filemanager/midnight.c:1641
|
||||
msgid "&Above"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1631
|
||||
#: src/filemanager/midnight.c:1641
|
||||
msgid "&Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1632
|
||||
#: src/filemanager/midnight.c:1642
|
||||
msgid "&Below"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1632
|
||||
#: src/filemanager/midnight.c:1642
|
||||
msgid "&Right"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1643
|
||||
#: src/filemanager/midnight.c:1653
|
||||
msgid "ButtonBar|Menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1644 src/viewer/display.c:90
|
||||
#: src/filemanager/midnight.c:1654 src/viewer/display.c:90
|
||||
msgid "ButtonBar|View"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1647 src/filemanager/tree.c:1212
|
||||
#: src/filemanager/midnight.c:1657 src/filemanager/tree.c:1212
|
||||
msgid "ButtonBar|RenMov"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/midnight.c:1648 src/filemanager/tree.c:1215
|
||||
#: src/filemanager/midnight.c:1658 src/filemanager/tree.c:1215
|
||||
msgid "ButtonBar|Mkdir"
|
||||
msgstr ""
|
||||
|
||||
@ -4572,13 +4573,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/usermenu.c:984
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/filemanager/usermenu.c:1086
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
@ -4725,11 +4719,11 @@ msgstr ""
|
||||
msgid "Cannot open named pipe %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/subshell.c:1054
|
||||
#: src/subshell.c:1055
|
||||
msgid "The shell is still active. Quit anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: src/subshell.c:1222
|
||||
#: src/subshell.c:1223
|
||||
#, c-format
|
||||
msgid "Warning: Cannot change to %s.\n"
|
||||
msgstr ""
|
||||
@ -5335,15 +5329,15 @@ msgstr ""
|
||||
msgid "Invalid value"
|
||||
msgstr ""
|
||||
|
||||
#: src/viewer/actions_cmd.c:613
|
||||
#: src/viewer/actions_cmd.c:616
|
||||
msgid "File was modified. Save with exit?"
|
||||
msgstr ""
|
||||
|
||||
#: src/viewer/actions_cmd.c:614
|
||||
#: src/viewer/actions_cmd.c:617
|
||||
msgid "&Cancel quit"
|
||||
msgstr ""
|
||||
|
||||
#: src/viewer/actions_cmd.c:619
|
||||
#: src/viewer/actions_cmd.c:622
|
||||
msgid ""
|
||||
"Midnight Commander is being shut down.\n"
|
||||
"Save modified file?"
|
||||
@ -5416,7 +5410,7 @@ msgid ""
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/viewer/hex.c:396
|
||||
#: src/viewer/hex.c:422
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Error while closing the file:\n"
|
||||
@ -5424,14 +5418,14 @@ msgid ""
|
||||
"Data may have been written or not"
|
||||
msgstr ""
|
||||
|
||||
#: src/viewer/hex.c:404
|
||||
#: src/viewer/hex.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot save file:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/viewer/lib.c:397 src/viewer/lib.c:399
|
||||
#: src/viewer/lib.c:404 src/viewer/lib.c:406
|
||||
msgid "View: "
|
||||
msgstr ""
|
||||
|
||||
|
10
po/mn.po
10
po/mn.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Mongolian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -672,7 +672,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3463,12 +3463,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/nb.po
10
po/nb.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mc/"
|
||||
@ -672,7 +672,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3463,12 +3463,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/nl.po
20
po/nl.po
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/projects/p/mc/language/nl/)\n"
|
||||
@ -682,6 +682,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -692,7 +693,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Kleuren: \n"
|
||||
" zwart, grijs, rood, felrood, groen, felgroen, bruin, \n"
|
||||
@ -3632,14 +3633,6 @@ msgstr "De %%var-macro heeft geen standaard"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "De %%var macro heeft geen variabele "
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kan bestand %s niet openen\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Geen passende items gevonden in %s "
|
||||
@ -4391,6 +4384,13 @@ msgstr "Doorgaan vanaf het begin?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Kan geen lokale versie van /ftp://some.host/editme.txt ophalen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Kan bestand %s niet openen\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Ongeldige poortwaarde"
|
||||
|
||||
|
20
po/pl.po
20
po/pl.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/projects/p/mc/language/pl/)\n"
|
||||
@ -702,6 +702,7 @@ msgstr ""
|
||||
" Pomoc: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -712,7 +713,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Standardowe kolory:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3658,14 +3659,6 @@ msgstr "Makro %%var nie posiada wartości domyślnej"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Makro %%var nie posiada zmiennych"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Nie można otworzyć pliku %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Nie odnaleziono odpowiednich wpisów w %s"
|
||||
@ -4427,6 +4420,13 @@ msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr ""
|
||||
"Nie można pobrać lokalnej kopii /ftp://jakiś.komputer/modyfikuj_mnie.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Nie można otworzyć pliku %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: nieprawidłowa wartość portu."
|
||||
|
||||
|
20
po/pt.po
20
po/pt.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 12:38+0000\n"
|
||||
"Last-Translator: Gilberto Jorge <gmj125@gmail.com>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -705,6 +705,7 @@ msgstr ""
|
||||
" Ajuda: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -715,7 +716,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Cores standard:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3656,14 +3657,6 @@ msgstr "A %%var macro não tem predefinição"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "A %%var macro não tem variável"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Não é possível abrir ficheiro %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Não foram encontradas entradas adequadas em %s"
|
||||
@ -4423,6 +4416,13 @@ msgstr "Continuar do início?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Não é possível obter uma cópia local de /ftp://some.host/editme.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Não é possível abrir ficheiro %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Valor de porto inválido."
|
||||
|
||||
|
10
po/pt_BR.po
10
po/pt_BR.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mc/"
|
||||
@ -686,7 +686,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3577,12 +3577,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/ro.po
20
po/ro.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -685,6 +685,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -695,7 +696,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Culori standard:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3642,14 +3643,6 @@ msgstr "Macro-ul %%var nu are o stare inițială"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Macro-ul %%var nu are o variabilă"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Nu se poate deschide fișierul%s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Nu au fost găsite înregistrări potrivite in %s"
|
||||
@ -4410,6 +4403,13 @@ msgstr "Continuă de la început?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Nu se poate aduce o copie locală a /ftp://some.host/editme.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Nu se poate deschide fișierul%s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Port nevalid."
|
||||
|
||||
|
18
po/ru.po
18
po/ru.po
@ -12,12 +12,12 @@
|
||||
# Ilia Maslakov <il.smind@gmail.com>, 2009
|
||||
# Slava Zanko <slavazanko@gmail.com>, 2009, 2011
|
||||
# NaiLi (aka jamesjames) Rootaerc <theism@mail.ru>, 2012
|
||||
# Andrew Borodin <aborodin@vmail.ru>, 2009-2014.
|
||||
# Andrew Borodin <aborodin@vmail.ru>, 2009-2015.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-12-10 13:12+0300\n"
|
||||
"Last-Translator: Andrew Borodin <aborodin@vmail.ru>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -162,7 +162,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Невозможно использовать скин %s, требующий 256 цветов,\n"
|
||||
"на терминале, не поддерживающем 256 цветов.\n"
|
||||
"Будет использован скин по-умолчанию"
|
||||
"Будет использован скин по умолчанию"
|
||||
|
||||
msgid "Escape"
|
||||
msgstr "Клавиша Esc "
|
||||
@ -716,7 +716,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Стандартные цвета:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -727,7 +727,7 @@ msgstr ""
|
||||
" от color16 до color255 или от rgb000 до rgb555 и от gray0 до gray23\n"
|
||||
"\n"
|
||||
"Атрибуты:\n"
|
||||
" bold, underline, reverse, blink; несколько атрибутов объединяются знаком "
|
||||
" bold, italic, underline, reverse, blink; несколько атрибутов объединяются знаком "
|
||||
"\"+\"\n"
|
||||
|
||||
msgid "Color options"
|
||||
@ -3661,14 +3661,6 @@ msgstr "Макрос %%var не имеет значения по умолчан
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Макрос %%var не имеет переменной"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Невозможно открыть файл %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "Не найдено подходящих элементов в %s"
|
||||
|
10
po/sk.po
10
po/sk.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/projects/p/mc/language/sk/)\n"
|
||||
@ -682,7 +682,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3478,12 +3478,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/sl.po
10
po/sl.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -682,7 +682,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3484,12 +3484,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/sr.po
10
po/sr.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Serbian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -673,7 +673,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3469,12 +3469,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/sv.po
10
po/sv.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -673,7 +673,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3464,12 +3464,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/sv_SE.po
10
po/sv_SE.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2011-12-07 11:21+0000\n"
|
||||
"Last-Translator: slavazanko <slavazanko@gmail.com>\n"
|
||||
"Language-Team: Swedish (Sweden) (http://www.transifex.net/projects/p/mc/team/"
|
||||
@ -663,7 +663,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3448,12 +3448,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/szl.po
10
po/szl.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Silesian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -665,7 +665,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3455,12 +3455,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/ta.po
10
po/ta.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/projects/p/mc/language/ta/)\n"
|
||||
@ -664,7 +664,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3449,12 +3449,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/tr.po
10
po/tr.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -673,7 +673,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3464,12 +3464,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/uk.po
20
po/uk.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -684,6 +684,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -694,7 +695,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"Стандартні кольори:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3633,14 +3634,6 @@ msgstr "Макрос %%var не має стандартного значення
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "Макрос %%var не має змінної"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Не вдалося відкрити файл %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "У %s не знайдено потрібних записів"
|
||||
@ -4399,6 +4392,13 @@ msgstr "Почати спочатку?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "Не вдалося отримати локальну копію /ftp://some.host/editme.txt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "Не вдалося відкрити файл %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: Неправильний порт."
|
||||
|
||||
|
10
po/vi.po
10
po/vi.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Vietnamese (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -672,7 +672,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3459,12 +3459,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
10
po/wa.po
10
po/wa.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Walloon (http://www.transifex.com/projects/p/mc/language/"
|
||||
@ -668,7 +668,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3460,12 +3460,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
20
po/zh_CN.po
20
po/zh_CN.po
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mc/"
|
||||
@ -685,6 +685,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATORS: don't translate color names and attributes
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Standard Colors:\n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -695,7 +696,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
"标准颜色: \n"
|
||||
" black, gray, red, brightred, green, brightgreen, brown,\n"
|
||||
@ -3625,14 +3626,6 @@ msgstr "%%var 宏没有默认值"
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr "%%var 宏没有变量"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"无法打开文件 %s\n"
|
||||
"%s"
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr "在 %s 没有找到相应的项"
|
||||
@ -4392,6 +4385,13 @@ msgstr "从头继续搜索?"
|
||||
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
|
||||
msgstr "无法获取 /ftp://some.host/editme.txt 的本地副本"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cannot open file%s\n"
|
||||
#~ "%s"
|
||||
#~ msgstr ""
|
||||
#~ "无法打开文件 %s\n"
|
||||
#~ "%s"
|
||||
|
||||
#~ msgid "sftp: Invalid port value."
|
||||
#~ msgstr "sftp: 无效的端口值。"
|
||||
|
||||
|
10
po/zh_TW.po
10
po/zh_TW.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Midnight Commander\n"
|
||||
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
|
||||
"POT-Creation-Date: 2014-12-10 13:09+0300\n"
|
||||
"POT-Creation-Date: 2015-02-17 15:19+0300\n"
|
||||
"PO-Revision-Date: 2014-09-04 10:10+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mc/"
|
||||
@ -672,7 +672,7 @@ msgid ""
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
|
||||
"\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n"
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color options"
|
||||
@ -3458,12 +3458,6 @@ msgstr ""
|
||||
msgid "The %%var macro has no variable"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Cannot open file%s\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "No suitable entries found in %s"
|
||||
msgstr ""
|
||||
|
@ -369,7 +369,7 @@ mc_args_new_color_group (void)
|
||||
"Extended colors, when 256 colors are available:\n"
|
||||
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n\n"
|
||||
"Attributes:\n"
|
||||
" bold, underline, reverse, blink; append more with '+'\n")
|
||||
" bold, italic, underline, reverse, blink; append more with '+'\n")
|
||||
);
|
||||
/* *INDENT-ON* */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user