diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2011-11-06 21:42:04 +0200 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2011-11-06 21:42:04 +0200 |
commit | 9f1747227fde23001d3e4827b583012833c7e861 (patch) | |
tree | ac836c36a140dc9ed2564245c6548434871edffc | |
parent | 892f87348974e1087539b16247b7696a454a3d18 (diff) | |
download | vdr-plugin-muggle-9f1747227fde23001d3e4827b583012833c7e861.tar.gz vdr-plugin-muggle-9f1747227fde23001d3e4827b583012833c7e861.tar.bz2 |
Improve chdir failed message.
-rw-r--r-- | po/de.po | 6 | ||||
-rw-r--r-- | po/fi.po | 4 | ||||
-rw-r--r-- | po/fr.po | 6 | ||||
-rw-r--r-- | po/it.po | 6 | ||||
-rw-r--r-- | po/muggle.pot | 2 | ||||
-rw-r--r-- | vdr_menu.c | 4 |
6 files changed, 14 insertions, 14 deletions
@@ -266,9 +266,9 @@ msgstr "Datenbank %s anlegen?" msgid "Import items?" msgstr "Titel importieren?" -#, c-format -msgid "Cannot access directory %s:%d" -msgstr "Kein Zugriff auf Verzeichnis %s:%d" +#, fuzzy, c-format +msgid "Cannot change to directory %s: %m" +msgstr "Kein Zugriff auf Verzeichnis %s: %m" #, c-format msgid "%d tracks : %s" @@ -266,8 +266,8 @@ msgid "Import items?" msgstr "Tuodaanko kappaleet?" #, c-format -msgid "Cannot access directory %s:%d" -msgstr "Hakemistoon %s siirtyminen ei onnistu: %d" +msgid "Cannot change to directory %s: %m" +msgstr "Hakemistoon %s siirtyminen ei onnistu: %m" #, c-format msgid "%d tracks : %s" @@ -265,9 +265,9 @@ msgstr "Générer la base des données %s?" msgid "Import items?" msgstr "Importer les titres?" -#, c-format -msgid "Cannot access directory %s:%d" -msgstr "Ne peux pas lire %s:%d" +#, fuzzy, c-format +msgid "Cannot change to directory %s: %m" +msgstr "Ne peux pas lire %s: %m" #, c-format msgid "%d tracks : %s" @@ -263,9 +263,9 @@ msgstr "Creare database %s?" msgid "Import items?" msgstr "Importare elementi?" -#, c-format -msgid "Cannot access directory %s:%d" -msgstr "Impossibile accedere alla dir. %s:%d" +#, fuzzy, c-format +msgid "Cannot change to directory %s: %m" +msgstr "Impossibile accedere alla dir. %s: %m" #, c-format msgid "%d tracks : %s" diff --git a/po/muggle.pot b/po/muggle.pot index 5d3a8c3..8a8f2cd 100644 --- a/po/muggle.pot +++ b/po/muggle.pot @@ -263,7 +263,7 @@ msgid "Import items?" msgstr "" #, c-format -msgid "Cannot access directory %s:%d" +msgid "Cannot change to directory %s: %m" msgstr "" #, c-format @@ -826,8 +826,8 @@ import() { static const char *tld_arg[] = { ".", 0}; int res = chdir(the_setup.ToplevelDir); if (res) { - showmessage(2,tr("Cannot access directory %s:%d"), - the_setup.ToplevelDir,errno); + showmessage(2,tr("Cannot change to directory %s: %m"), + the_setup.ToplevelDir); return false; } s->Sync(tld_arg); |