Merge branch '3065_italic'

* 3065_italic:
  Update po/*.po files.
  Ticket #3065: support of italic text.
This commit is contained in:
Andrew Borodin 2015-02-17 15:27:52 +03:00
commit e7e3aed174
60 changed files with 330 additions and 517 deletions

View File

@ -61,6 +61,7 @@ Antonio Palama, DOS port <palama@posso.dm.unipi.it>
Egmont Koblinger <egmont@gmail.com> Egmont Koblinger <egmont@gmail.com>
Support of 256 colors Support of 256 colors
Support of italic text
Support of extended mouse clicks beyond 223 column Support of extended mouse clicks beyond 223 column
Support of bracketed paste mode of xterm Support of bracketed paste mode of xterm
(http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Bracketed%20Paste%20Mode) (http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Bracketed%20Paste%20Mode)

View File

@ -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 base_color=normal=white,default:marked=magenta,default
.fi .fi
.PP .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 plus sign if more than one are desired. The special word "none" means no
attributes, without attempting to fall back to base_color. Example: attributes, without attempting to fall back to base_color. Example:
.PP .PP

View File

@ -439,7 +439,7 @@ uses the color before the slash. See cooledit(1) for supported
.B cooledit .B cooledit
colors. colors.
.PP .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. plus sign if more than one are desired.
.PP .PP
Comments may be put on a separate line starting with the hash sign (#). Comments may be put on a separate line starting with the hash sign (#).

View File

@ -3999,7 +3999,7 @@ lightgray и white. Для прозрачного фона используют
base_color=normal=white,default:marked=magenta,default base_color=normal=white,default:marked=magenta,default
.fi .fi
.PP .PP
Атрибуты обозначаются словами "bold", "underline", "reverse" и "blink". Атрибуты обозначаются словами "bold", "italic", "underline", "reverse" и "blink".
Чтобы использовать несколько атрибутов, их надо перечислить через символ "+". Чтобы использовать несколько атрибутов, их надо перечислить через символ "+".
The special word "none" menas no attributes, without attempting to fall back The special word "none" menas no attributes, without attempting to fall back
to base_color. Пример: to base_color. Пример:

View File

@ -83,6 +83,9 @@ mc_tty_color_table_t const color_table[] = {
mc_tty_color_table_t const attributes_table[] = { mc_tty_color_table_t const attributes_table[] = {
{"bold", A_BOLD}, {"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}, {"underline", A_UNDERLINE},
{"reverse", A_REVERSE}, {"reverse", A_REVERSE},
{"blink", A_BLINK}, {"blink", A_BLINK},

View File

@ -11,12 +11,17 @@
/*** typedefs(not structures) and defined constants **********************************************/ /*** typedefs(not structures) and defined constants **********************************************/
/* When using Slang with color, we have all the indexes free but /* 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 #ifndef A_BOLD
#define A_BOLD SLTT_BOLD_MASK #define A_BOLD SLTT_BOLD_MASK
#endif /* A_BOLD */ #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 #ifndef A_UNDERLINE
#define A_UNDERLINE SLTT_ULINE_MASK #define A_UNDERLINE SLTT_ULINE_MASK
#endif /* A_UNDERLINE */ #endif /* A_UNDERLINE */

View File

@ -47,9 +47,12 @@
# #
# Following the foreground and background colors, the third (optional) value # Following the foreground and background colors, the third (optional) value
# can specify special attributes to enable. Valid values are bold, underline, # 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_. # 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. # 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] [skin]
description = Sand skin using 256 colors description = Sand skin using 256 colors
@ -81,8 +84,8 @@
[core] [core]
_default_ = black;rgb554 _default_ = black;rgb554
selected = ;rgb452 selected = ;rgb452
marked = rgb400 marked = rgb400;;italic
markselect = rgb400;rgb452 markselect = rgb400;rgb452;italic
gauge = ;rgb452 gauge = ;rgb452
input = ;rgb452 input = ;rgb452
inputunchanged = gray;rgb452 inputunchanged = gray;rgb452
@ -90,14 +93,14 @@
disabled = gray;rgb553 disabled = gray;rgb553
reverse = ;rgb452 reverse = ;rgb452
commandlinemark = white;gray commandlinemark = white;gray
header = red header = red;;italic
[dialog] [dialog]
_default_ = black;rgb553 _default_ = black;rgb553
dfocus = ;rgb452 dfocus = ;rgb452
dhotnormal = ;;underline dhotnormal = ;;underline
dhotfocus = ;rgb452;underline dhotfocus = ;rgb452;underline
dtitle = ;;underline dtitle = ;;italic+underline
[error] [error]
_default_ = rgb554;rgb320;bold _default_ = rgb554;rgb320;bold
@ -105,7 +108,7 @@
errdfocus = rgb000;rgb452;bold errdfocus = rgb000;rgb452;bold
errdhotnormal = ;;bold+underline errdhotnormal = ;;bold+underline
errdhotfocus = rgb000;rgb452;bold+underline errdhotfocus = rgb000;rgb452;bold+underline
errdtitle = ;;bold+underline errdtitle = ;;bold+italic+underline
[filehighlight] [filehighlight]
directory = directory =
@ -126,28 +129,28 @@
database = rgb421 database = rgb421
[menu] [menu]
_default_ = black;rgb452 _default_ = black;rgb452;italic
menusel = ;rgb551 menusel = ;rgb551
menuhot = ;;underline menuhot = ;;italic+underline
menuhotsel = ;rgb551;underline menuhotsel = ;rgb551;italic+underline
menuinactive = menuinactive =
[popupmenu] [popupmenu]
_default_ = black;rgb553 _default_ = black;rgb553
menusel = ;rgb452;underline menusel = ;rgb452;underline
menutitle = ;;underline menutitle = ;;italic+underline
[buttonbar] [buttonbar]
hotkey = black;rgb554 hotkey = black;rgb554;italic
button = black;rgb452 button = black;rgb452;italic
[statusbar] [statusbar]
_default_ = black;rgb452 _default_ = black;rgb452;italic
[help] [help]
_default_ = black;rgb553 _default_ = black;rgb553
helpitalic = green helpitalic = green;;italic
helpbold = red helpbold = red;;bold
helplink = blue;;underline helplink = blue;;underline
helpslink = blue;;reverse helpslink = blue;;reverse
helptitle = ;;underline helptitle = ;;underline
@ -155,7 +158,7 @@
[editor] [editor]
_default_ = black;rgb554 _default_ = black;rgb554
editbold = rgb400 editbold = rgb400
editmarked = ;rgb452 editmarked = ;rgb452;italic
editwhitespace = rgb400;rgb553 editwhitespace = rgb400;rgb553
editlinestate = ;rgb553 editlinestate = ;rgb553
bookmark = ;rgb551 bookmark = ;rgb551

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3464,12 +3464,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Belarusian (http://www.transifex.com/projects/p/mc/language/"
@ -683,6 +683,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Звычайныя колеры:\n" "Звычайныя колеры:\n"
" black, gray, red, brightred, green, brightgreen, brown,\n" " black, gray, red, brightred, green, brightgreen, brown,\n"
@ -3628,14 +3629,6 @@ msgstr "Макрас «%%var» ня мае прадвызначана значэ
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "Макрас «%%var» ня мае зьменнае" msgstr "Макрас «%%var» ня мае зьменнае"
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"Немагчыма адчыніць файл «%s»\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "«%s» ня мае адпаведных запісаў" msgstr "«%s» ня мае адпаведных запісаў"
@ -4388,6 +4381,13 @@ msgstr "Ці працягваць ад пачатку?"
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "Немагчыма адчыніць файл «%s»\n"
#~ "%s"
#~ msgid "sftp: Invalid port value." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: хібны порт." #~ msgstr "sftp: хібны порт."

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3472,12 +3472,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3477,14 +3477,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"No es pot obrir el fitxer%s\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""
@ -4221,3 +4213,10 @@ msgstr ""
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "No es pot obrir el fitxer%s\n"
#~ "%s"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/mc/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/projects/p/mc/language/cs/)\n"
@ -678,6 +678,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Standartní barvy:\n" "Standartní barvy:\n"
" černá, šedá, červená, světlečervená, zelená, světlezelená, hnědá,\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" msgid "The %%var macro has no variable"
msgstr "Makro %%var nemá proměnnou" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "V %s nejsou odpovídající položky" 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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "Nelze otevřít soubor %s\n"
#~ "%s"
#~ msgid "Cannot spawn child process" #~ msgid "Cannot spawn child process"
#~ msgstr "Nelze vytvořit proces potomka" #~ msgstr "Nelze vytvořit proces potomka"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mc/language/da/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3583,14 +3583,6 @@ msgstr "Makroen %%var har ingen standard"
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "Makroen %%var har ingen variabel" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Ingen egnede punkter fundet i %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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "Kan ikke åbne fil %s\n"
#~ "%s"
#~ msgid "Cannot spawn child process" #~ msgid "Cannot spawn child process"
#~ msgstr "Kan ikke spawn underproces" #~ msgstr "Kan ikke spawn underproces"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: German (http://www.transifex.com/projects/p/mc/language/de/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3591,14 +3591,6 @@ msgstr "Das %%var-Makro hat keinen Standardwert"
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "Das %%var-Makro hat keine 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Keine verwendbaren Einträge in %s gefunden" 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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "Kann Datei %s nicht öffnen\n"
#~ "%s"
#~ msgid "Cannot spawn child process" #~ msgid "Cannot spawn child process"
#~ msgstr "Kann Kindprozess nicht hervorbringen" #~ msgstr "Kann Kindprozess nicht hervorbringen"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/mc/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3449,12 +3449,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/mc/language/el/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3555,14 +3555,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"Αδυναμία ανοίγματος αρχείου %s\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Δε βρέθηκαν καταχωρήσεις στο %s" msgstr "Δε βρέθηκαν καταχωρήσεις στο %s"
@ -4298,3 +4290,10 @@ msgstr "Συνέχεια από την αρχή;"
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "Αδυναμία ανοίγματος αρχείου %s\n"
#~ "%s"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3449,12 +3449,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Esperanto (http://www.transifex.com/projects/p/mc/language/"
@ -700,6 +700,7 @@ msgstr ""
"helpslink\n" "helpslink\n"
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Ordinaraj koloroj:\n" "Ordinaraj koloroj:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "La makroo %%var havas neniun variablon" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Neniuj taŭgaj eroj trovitaj en %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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "Ne eblas atingi lokan kopion de /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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Nevalida pordnumero." #~ msgstr "sftp: Nevalida pordnumero."

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Spanish (http://www.transifex.com/projects/p/mc/language/"
@ -706,6 +706,7 @@ msgstr ""
" Ayuda: helpnormal, helpitalic, helpbold, helplink, helpslink\n" " Ayuda: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Colores estándar:\n" "Colores estándar:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "La macro %%var no contiene variables" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "No se encuentran entradas apropiadas en %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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "Imposible obtener una copia local de /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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Número de puerto no válido" #~ msgstr "sftp: Número de puerto no válido"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Estonian (http://www.transifex.com/projects/p/mc/language/"
@ -699,6 +699,7 @@ msgstr ""
" Abi: helpnormal, helpitalic, helpbold, helplink, helpslink\n" " Abi: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Standardvärvid:\n" "Standardvärvid:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "Makrol %%var puudub muutuja" msgstr "Makrol %%var puudub muutuja"
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"Faili %s avamine nurjus\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Failist %s ei leitud sobivaid kirjeid" 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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "Kohaliku koopia hankimine failist /ftp://some.host/editme.txt nurjus" 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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: vigane pordi väärtus." #~ msgstr "sftp: vigane pordi väärtus."

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/mc/language/eu/)\n" "Language-Team: Basque (http://www.transifex.com/projects/p/mc/language/eu/)\n"
@ -680,6 +680,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Kolore estandarrak:\n" "Kolore estandarrak:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "%%var makroak ez dauka aldagairik" msgstr "%%var makroak ez dauka aldagairik"
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"%s fitxategia ezin ireki\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "%s-(e)n ez dira sarrera egokiak aurkitu" 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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "%s fitxategia ezin ireki\n"
#~ "%s"
#~ msgid "Cannot spawn child process" #~ msgid "Cannot spawn child process"
#~ msgstr "Ezin sortu ume prozesua" #~ msgstr "Ezin sortu ume prozesua"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3450,12 +3450,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Finnish (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3461,12 +3461,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2013-03-13 08:51+0000\n"
"Last-Translator: Slava Zanko <slavazanko@gmail.com>\n" "Last-Translator: Slava Zanko <slavazanko@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3471,12 +3471,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/projects/p/mc/language/fr/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3571,14 +3571,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"Impossible d'ouvrir le fichier %s\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""
@ -4331,6 +4323,13 @@ msgstr "Continuer à partir de début ?"
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "" msgstr ""
#~ msgid ""
#~ "Cannot open file%s\n"
#~ "%s"
#~ msgstr ""
#~ "Impossible d'ouvrir le fichier %s\n"
#~ "%s"
#~ msgid "sftp: Invalid port value." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Numéro de port invalide." #~ msgstr "sftp: Numéro de port invalide."

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Galician (http://www.transifex.com/projects/p/mc/language/"
@ -686,6 +686,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Cores estándar:\n" "Cores estándar:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "A macro %%var non contén variábeis" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Non se atopan entradas apropiadas en %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" 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" 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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: porto incorrecto." #~ msgstr "sftp: porto incorrecto."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3455,12 +3455,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Hungarian (http://www.transifex.com/projects/p/mc/language/"
@ -685,6 +685,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Alap színek:\\n\n" "Alap színek:\\n\n"
" black (fekete), gray (szürke), red (piros), brightred (élénkpiros),\\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" msgid "The %%var macro has no variable"
msgstr "A %%var makrónak nincs változója" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Nincsenek megfelelő bejegyzések ebben: %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" 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" 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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Érvénytelen portszám." #~ msgstr "sftp: Érvénytelen portszám."

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3477,12 +3477,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3455,12 +3455,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2015-02-14 21:18+0100\n"
"Last-Translator: Marco Ciampa <ciampix@libero.it>\n" "Last-Translator: Marco Ciampa <ciampix@libero.it>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Italian (http://www.transifex.com/projects/p/mc/language/"
@ -699,6 +699,7 @@ msgstr ""
" Aiuto: helpnormal, helpitalic, helpbold, helplink, helpslink\n" " Aiuto: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Colori standard:\n" "Colori standard:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "Le macro %%var non ha variabile" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Non trovo voci appropriate 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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "Impossibile ricevere copia locale di /ftp://un.host/modificami.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"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Japanese (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3474,12 +3474,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Georgian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3449,12 +3449,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Kazakh (http://www.transifex.com/projects/p/mc/language/kk/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3443,12 +3443,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Korean (http://www.transifex.com/projects/p/mc/language/ko/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3461,12 +3461,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3480,12 +3480,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3471,12 +3471,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -5,9 +5,9 @@
# #
msgid "" msgid ""
msgstr "" 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" "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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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.c:3455 src/editor/editcmd.c:3484
#: src/editor/editcmd_dialogs.c:479 src/execute.c:135 #: 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/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 #: src/viewer/actions_cmd.c:417
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
@ -700,8 +700,8 @@ msgstr ""
#: src/filemanager/filegui.c:438 src/filemanager/hotlist.c:1121 #: src/filemanager/filegui.c:438 src/filemanager/hotlist.c:1121
#: src/filemanager/hotlist.c:1138 src/filemanager/midnight.c:1037 #: src/filemanager/hotlist.c:1138 src/filemanager/midnight.c:1037
#: src/filemanager/midnight.c:1045 src/filemanager/panel.c:2765 #: 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/filemanager/tree.c:875 src/subshell.c:1056 src/viewer/actions_cmd.c:617
#: src/viewer/actions_cmd.c:620 src/viewer/search.c:358 #: src/viewer/actions_cmd.c:623 src/viewer/search.c:358
msgid "&Yes" msgid "&Yes"
msgstr "" msgstr ""
@ -712,8 +712,8 @@ msgstr ""
#: src/filemanager/filegui.c:440 src/filemanager/hotlist.c:1121 #: src/filemanager/filegui.c:440 src/filemanager/hotlist.c:1121
#: src/filemanager/hotlist.c:1138 src/filemanager/midnight.c:1037 #: src/filemanager/hotlist.c:1138 src/filemanager/midnight.c:1037
#: src/filemanager/midnight.c:1045 src/filemanager/panel.c:2765 #: 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/filemanager/tree.c:875 src/subshell.c:1056 src/viewer/actions_cmd.c:617
#: src/viewer/actions_cmd.c:620 src/viewer/search.c:359 #: src/viewer/actions_cmd.c:623 src/viewer/search.c:359
msgid "&No" msgid "&No"
msgstr "" msgstr ""
@ -735,7 +735,7 @@ msgstr ""
#: src/filemanager/filegui.c:1250 src/filemanager/find.c:524 #: src/filemanager/filegui.c:1250 src/filemanager/find.c:524
#: src/filemanager/hotlist.c:191 src/filemanager/hotlist.c:977 #: src/filemanager/hotlist.c:191 src/filemanager/hotlist.c:977
#: src/filemanager/hotlist.c:1039 src/filemanager/layout.c:461 #: 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" msgid "&Cancel"
msgstr "" msgstr ""
@ -900,7 +900,7 @@ msgid ""
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
#: src/args.c:377 #: src/args.c:377
@ -926,7 +926,7 @@ msgid ""
"as tickets at www.midnight-commander.org\n" "as tickets at www.midnight-commander.org\n"
msgstr "" 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 #, c-format
msgid "GNU Midnight Commander %s\n" msgid "GNU Midnight Commander %s\n"
msgstr "" msgstr ""
@ -1110,7 +1110,7 @@ msgid "Enter line:"
msgstr "" msgstr ""
#: src/diffviewer/ydiff.c:2952 src/editor/editwidget.c:976 #: 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 #: src/viewer/display.c:85
msgid "ButtonBar|Help" msgid "ButtonBar|Help"
msgstr "" msgstr ""
@ -1120,7 +1120,7 @@ msgstr ""
msgid "ButtonBar|Save" msgid "ButtonBar|Save"
msgstr "" 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 #: src/viewer/display.c:92
msgid "ButtonBar|Edit" msgid "ButtonBar|Edit"
msgstr "" msgstr ""
@ -1139,13 +1139,13 @@ msgid "ButtonBar|Options"
msgstr "" msgstr ""
#: src/diffviewer/ydiff.c:2958 src/editor/editwidget.c:985 #: 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 #: src/viewer/display.c:122
msgid "ButtonBar|Quit" msgid "ButtonBar|Quit"
msgstr "" msgstr ""
#: src/diffviewer/ydiff.c:3095 src/editor/editcmd.c:2862 #: 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" msgid "Quit"
msgstr "" msgstr ""
@ -1400,7 +1400,7 @@ msgstr ""
msgid "Confirm save file: \"%s\"" msgid "Confirm save file: \"%s\""
msgstr "" 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" msgid "Save file"
msgstr "" msgstr ""
@ -2047,7 +2047,7 @@ msgstr ""
msgid "ButtonBar|Replac" msgid "ButtonBar|Replac"
msgstr "" 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 #: src/filemanager/tree.c:1211
msgid "ButtonBar|Copy" msgid "ButtonBar|Copy"
msgstr "" msgstr ""
@ -2056,11 +2056,11 @@ msgstr ""
msgid "ButtonBar|Move" msgid "ButtonBar|Move"
msgstr "" msgstr ""
#: src/editor/editwidget.c:983 src/filemanager/midnight.c:1649 #: src/editor/editwidget.c:983 src/filemanager/midnight.c:1659
msgid "ButtonBar|Delete" msgid "ButtonBar|Delete"
msgstr "" msgstr ""
#: src/editor/editwidget.c:984 src/filemanager/midnight.c:1650 #: src/editor/editwidget.c:984 src/filemanager/midnight.c:1660
msgid "ButtonBar|PullDn" msgid "ButtonBar|PullDn"
msgstr "" msgstr ""
@ -2188,7 +2188,8 @@ msgstr ""
msgid "Load syntax file" msgid "Load syntax file"
msgstr "" 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 #, c-format
msgid "" msgid ""
"Cannot open file %s\n" "Cannot open file %s\n"
@ -3149,7 +3150,7 @@ msgstr ""
msgid "Ski&p all" msgid "Ski&p all"
msgstr "" msgstr ""
#: src/filemanager/file.c:677 src/viewer/hex.c:407 #: src/filemanager/file.c:677 src/viewer/hex.c:433
msgid "&Retry" msgid "&Retry"
msgstr "" msgstr ""
@ -4198,35 +4199,35 @@ msgstr ""
msgid "Do you really want to quit the Midnight Commander?" msgid "Do you really want to quit the Midnight Commander?"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1631 #: src/filemanager/midnight.c:1641
msgid "&Above" msgid "&Above"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1631 #: src/filemanager/midnight.c:1641
msgid "&Left" msgid "&Left"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1632 #: src/filemanager/midnight.c:1642
msgid "&Below" msgid "&Below"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1632 #: src/filemanager/midnight.c:1642
msgid "&Right" msgid "&Right"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1643 #: src/filemanager/midnight.c:1653
msgid "ButtonBar|Menu" msgid "ButtonBar|Menu"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1644 src/viewer/display.c:90 #: src/filemanager/midnight.c:1654 src/viewer/display.c:90
msgid "ButtonBar|View" msgid "ButtonBar|View"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1647 src/filemanager/tree.c:1212 #: src/filemanager/midnight.c:1657 src/filemanager/tree.c:1212
msgid "ButtonBar|RenMov" msgid "ButtonBar|RenMov"
msgstr "" msgstr ""
#: src/filemanager/midnight.c:1648 src/filemanager/tree.c:1215 #: src/filemanager/midnight.c:1658 src/filemanager/tree.c:1215
msgid "ButtonBar|Mkdir" msgid "ButtonBar|Mkdir"
msgstr "" msgstr ""
@ -4572,13 +4573,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#: src/filemanager/usermenu.c:984
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#: src/filemanager/usermenu.c:1086 #: src/filemanager/usermenu.c:1086
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
@ -4725,11 +4719,11 @@ msgstr ""
msgid "Cannot open named pipe %s\n" msgid "Cannot open named pipe %s\n"
msgstr "" msgstr ""
#: src/subshell.c:1054 #: src/subshell.c:1055
msgid "The shell is still active. Quit anyway?" msgid "The shell is still active. Quit anyway?"
msgstr "" msgstr ""
#: src/subshell.c:1222 #: src/subshell.c:1223
#, c-format #, c-format
msgid "Warning: Cannot change to %s.\n" msgid "Warning: Cannot change to %s.\n"
msgstr "" msgstr ""
@ -5335,15 +5329,15 @@ msgstr ""
msgid "Invalid value" msgid "Invalid value"
msgstr "" msgstr ""
#: src/viewer/actions_cmd.c:613 #: src/viewer/actions_cmd.c:616
msgid "File was modified. Save with exit?" msgid "File was modified. Save with exit?"
msgstr "" msgstr ""
#: src/viewer/actions_cmd.c:614 #: src/viewer/actions_cmd.c:617
msgid "&Cancel quit" msgid "&Cancel quit"
msgstr "" msgstr ""
#: src/viewer/actions_cmd.c:619 #: src/viewer/actions_cmd.c:622
msgid "" msgid ""
"Midnight Commander is being shut down.\n" "Midnight Commander is being shut down.\n"
"Save modified file?" "Save modified file?"
@ -5416,7 +5410,7 @@ msgid ""
"%s" "%s"
msgstr "" msgstr ""
#: src/viewer/hex.c:396 #: src/viewer/hex.c:422
#, c-format #, c-format
msgid "" msgid ""
"Error while closing the file:\n" "Error while closing the file:\n"
@ -5424,14 +5418,14 @@ msgid ""
"Data may have been written or not" "Data may have been written or not"
msgstr "" msgstr ""
#: src/viewer/hex.c:404 #: src/viewer/hex.c:430
#, c-format #, c-format
msgid "" msgid ""
"Cannot save file:\n" "Cannot save file:\n"
"%s" "%s"
msgstr "" msgstr ""
#: src/viewer/lib.c:397 src/viewer/lib.c:399 #: src/viewer/lib.c:404 src/viewer/lib.c:406
msgid "View: " msgid "View: "
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3463,12 +3463,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mc/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3463,12 +3463,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/mc/language/nl/)\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/mc/language/nl/)\n"
@ -682,6 +682,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Kleuren: \n" "Kleuren: \n"
" zwart, grijs, rood, felrood, groen, felgroen, bruin, \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" msgid "The %%var macro has no variable"
msgstr "De %%var macro heeft geen variabele " 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Geen passende items gevonden 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" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "Kan geen lokale versie van /ftp://some.host/editme.txt ophalen" 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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Ongeldige poortwaarde" #~ msgstr "sftp: Ongeldige poortwaarde"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mc/language/pl/)\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" " Pomoc: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Standardowe kolory:\n" "Standardowe kolory:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "Makro %%var nie posiada zmiennych" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Nie odnaleziono odpowiednich wpisów w %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 "" msgstr ""
"Nie można pobrać lokalnej kopii /ftp://jakiś.komputer/modyfikuj_mnie.txt" "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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: nieprawidłowa wartość portu." #~ msgstr "sftp: nieprawidłowa wartość portu."

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 12:38+0000\n"
"Last-Translator: Gilberto Jorge <gmj125@gmail.com>\n" "Last-Translator: Gilberto Jorge <gmj125@gmail.com>\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Portuguese (http://www.transifex.com/projects/p/mc/language/"
@ -705,6 +705,7 @@ msgstr ""
" Ajuda: helpnormal, helpitalic, helpbold, helplink, helpslink\n" " Ajuda: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Cores standard:\n" "Cores standard:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "A %%var macro não tem variável" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Não foram encontradas entradas adequadas em %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" 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" 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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Valor de porto inválido." #~ msgstr "sftp: Valor de porto inválido."

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mc/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3577,12 +3577,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Romanian (http://www.transifex.com/projects/p/mc/language/"
@ -685,6 +685,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Culori standard:\n" "Culori standard:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" msgid "The %%var macro has no variable"
msgstr "Macro-ul %%var nu are o variabilă" 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 #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Nu au fost găsite înregistrări potrivite 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" 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" 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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Port nevalid." #~ msgstr "sftp: Port nevalid."

View File

@ -12,12 +12,12 @@
# Ilia Maslakov <il.smind@gmail.com>, 2009 # Ilia Maslakov <il.smind@gmail.com>, 2009
# Slava Zanko <slavazanko@gmail.com>, 2009, 2011 # Slava Zanko <slavazanko@gmail.com>, 2009, 2011
# NaiLi (aka jamesjames) Rootaerc <theism@mail.ru>, 2012 # NaiLi (aka jamesjames) Rootaerc <theism@mail.ru>, 2012
# Andrew Borodin <aborodin@vmail.ru>, 2009-2014. # Andrew Borodin <aborodin@vmail.ru>, 2009-2015.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-12-10 13:12+0300\n"
"Last-Translator: Andrew Borodin <aborodin@vmail.ru>\n" "Last-Translator: Andrew Borodin <aborodin@vmail.ru>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Russian (http://www.transifex.com/projects/p/mc/language/"
@ -162,7 +162,7 @@ msgid ""
msgstr "" msgstr ""
"Невозможно использовать скин %s, требующий 256 цветов,\n" "Невозможно использовать скин %s, требующий 256 цветов,\n"
"на терминале, не поддерживающем 256 цветов.\n" "на терминале, не поддерживающем 256 цветов.\n"
"Будет использован скин по-умолчанию" "Будет использован скин по умолчанию"
msgid "Escape" msgid "Escape"
msgstr "Клавиша Esc " msgstr "Клавиша Esc "
@ -716,7 +716,7 @@ msgid ""
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Стандартные цвета:\n" "Стандартные цвета:\n"
" black, gray, red, brightred, green, brightgreen, brown,\n" " black, gray, red, brightred, green, brightgreen, brown,\n"
@ -727,7 +727,7 @@ msgstr ""
" от color16 до color255 или от rgb000 до rgb555 и от gray0 до gray23\n" " от color16 до color255 или от rgb000 до rgb555 и от gray0 до gray23\n"
"\n" "\n"
"Атрибуты:\n" "Атрибуты:\n"
" bold, underline, reverse, blink; несколько атрибутов объединяются знаком " " bold, italic, underline, reverse, blink; несколько атрибутов объединяются знаком "
"\"+\"\n" "\"+\"\n"
msgid "Color options" msgid "Color options"
@ -3661,14 +3661,6 @@ msgstr "Макрос %%var не имеет значения по умолчан
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "Макрос %%var не имеет переменной" msgstr "Макрос %%var не имеет переменной"
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"Невозможно открыть файл %s\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "Не найдено подходящих элементов в %s" msgstr "Не найдено подходящих элементов в %s"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Slovak (http://www.transifex.com/projects/p/mc/language/sk/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3478,12 +3478,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Slovenian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3484,12 +3484,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Serbian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3469,12 +3469,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Swedish (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3464,12 +3464,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2011-12-07 11:21+0000\n"
"Last-Translator: slavazanko <slavazanko@gmail.com>\n" "Last-Translator: slavazanko <slavazanko@gmail.com>\n"
"Language-Team: Swedish (Sweden) (http://www.transifex.net/projects/p/mc/team/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3448,12 +3448,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Silesian (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3455,12 +3455,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Tamil (http://www.transifex.com/projects/p/mc/language/ta/)\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3449,12 +3449,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Turkish (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3464,12 +3464,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/mc/language/" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/mc/language/"
@ -684,6 +684,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"Стандартні кольори:\n" "Стандартні кольори:\n"
" black, gray, red, brightred, green, brightgreen, brown,\n" " black, gray, red, brightred, green, brightgreen, brown,\n"
@ -3633,14 +3634,6 @@ msgstr "Макрос %%var не має стандартного значення
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "Макрос %%var не має змінної" msgstr "Макрос %%var не має змінної"
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"Не вдалося відкрити файл %s\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "У %s не знайдено потрібних записів" msgstr "У %s не знайдено потрібних записів"
@ -4399,6 +4392,13 @@ msgstr "Почати спочатку?"
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "Не вдалося отримати локальну копію /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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: Неправильний порт." #~ msgstr "sftp: Неправильний порт."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Vietnamese (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3459,12 +3459,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Walloon (http://www.transifex.com/projects/p/mc/language/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3460,12 +3460,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mc/" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mc/"
@ -685,6 +685,7 @@ msgid ""
msgstr "" msgstr ""
#. TRANSLATORS: don't translate color names and attributes #. TRANSLATORS: don't translate color names and attributes
#, fuzzy
msgid "" msgid ""
"Standard Colors:\n" "Standard Colors:\n"
" black, gray, red, brightred, green, brightgreen, brown,\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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
"标准颜色: \n" "标准颜色: \n"
" black, gray, red, brightred, green, brightgreen, brown,\n" " black, gray, red, brightred, green, brightgreen, brown,\n"
@ -3625,14 +3626,6 @@ msgstr "%%var 宏没有默认值"
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "%%var 宏没有变量" msgstr "%%var 宏没有变量"
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
"无法打开文件 %s\n"
"%s"
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "在 %s 没有找到相应的项" msgstr "在 %s 没有找到相应的项"
@ -4392,6 +4385,13 @@ msgstr "从头继续搜索?"
msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt" msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
msgstr "无法获取 /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." #~ msgid "sftp: Invalid port value."
#~ msgstr "sftp: 无效的端口值。" #~ msgstr "sftp: 无效的端口值。"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Midnight Commander\n" "Project-Id-Version: Midnight Commander\n"
"Report-Msgid-Bugs-To: http://www.midnight-commander.org/\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" "PO-Revision-Date: 2014-09-04 10:10+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mc/" "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" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
"\n" "\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n" " bold, italic, underline, reverse, blink; append more with '+'\n"
msgstr "" msgstr ""
msgid "Color options" msgid "Color options"
@ -3458,12 +3458,6 @@ msgstr ""
msgid "The %%var macro has no variable" msgid "The %%var macro has no variable"
msgstr "" msgstr ""
#, c-format
msgid ""
"Cannot open file%s\n"
"%s"
msgstr ""
#, c-format #, c-format
msgid "No suitable entries found in %s" msgid "No suitable entries found in %s"
msgstr "" msgstr ""

View File

@ -369,7 +369,7 @@ mc_args_new_color_group (void)
"Extended colors, when 256 colors are available:\n" "Extended colors, when 256 colors are available:\n"
" color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n\n" " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n\n"
"Attributes:\n" "Attributes:\n"
" bold, underline, reverse, blink; append more with '+'\n") " bold, italic, underline, reverse, blink; append more with '+'\n")
); );
/* *INDENT-ON* */ /* *INDENT-ON* */