gettext 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +113 -0
- data/NEWS +17 -1
- data/README +56 -46
- data/Rakefile +6 -2
- data/data/locale/cs/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/cs/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/rgettext.mo +0 -0
- data/ext/gettext/locale_system.c +3 -3
- data/lib/gettext.rb +149 -98
- data/lib/gettext/container.rb +3 -23
- data/lib/gettext/erb.rb +2 -2
- data/lib/gettext/locale_posix.rb +37 -5
- data/lib/gettext/locale_win32.rb +2 -1
- data/lib/gettext/mo.rb +6 -4
- data/lib/gettext/parser/activerecord.rb +7 -3
- data/lib/gettext/poparser.rb +2 -2
- data/lib/gettext/rails.rb +131 -112
- data/lib/gettext/rgettext.rb +3 -1
- data/lib/gettext/rmsgfmt.rb +3 -1
- data/lib/gettext/rmsgmerge.rb +3 -1
- data/lib/gettext/textdomain.rb +14 -8
- data/lib/gettext/textdomainmanager.rb +103 -0
- data/lib/gettext/version.rb +1 -1
- data/po/cs/rails.po +16 -16
- data/po/cs/rgettext.po +7 -3
- data/po/de/rails.po +16 -16
- data/po/de/rgettext.po +7 -3
- data/po/el/rails.po +16 -16
- data/po/el/rgettext.po +7 -3
- data/po/es/rails.po +16 -16
- data/po/es/rgettext.po +7 -3
- data/po/fr/rails.po +16 -16
- data/po/fr/rgettext.po +7 -3
- data/po/it/rails.po +79 -0
- data/po/it/rgettext.po +42 -32
- data/po/ja/rails.po +20 -18
- data/po/ja/rgettext.po +7 -3
- data/po/ko/rails.po +16 -16
- data/po/ko/rgettext.po +7 -3
- data/po/nl/rails.po +16 -16
- data/po/nl/rgettext.po +7 -3
- data/po/pt_BR/rails.po +16 -16
- data/po/pt_BR/rgettext.po +7 -3
- data/po/rails.pot +16 -16
- data/po/rgettext.pot +7 -3
- data/po/ru/rails.po +18 -18
- data/po/ru/rgettext.po +13 -9
- data/po/sv/rgettext.po +7 -3
- data/po/zh/rails.po +78 -0
- data/po/zh/rgettext.po +104 -0
- data/pre-setup.rb +1 -4
- data/samples/cgi/helloerb.rhtml +1 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/zh/helloerb1.po +60 -0
- data/samples/cgi/po/zh/helloerb2.po +52 -0
- data/samples/cgi/po/zh/hellolib.po +24 -0
- data/samples/cgi/po/zh/main.po +80 -0
- data/samples/hello.rb +28 -5
- data/samples/hello2.rb +13 -6
- data/samples/hello_noop.rb +20 -8
- data/samples/hello_plural.rb +16 -6
- data/samples/hello_textdomain.rb +13 -4
- data/samples/hellogtk.rb +5 -4
- data/samples/hellogtk2.rb +5 -6
- data/samples/locale/cs/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/po/cs/hello2.po +4 -4
- data/samples/po/cs/hello_plural.po +5 -5
- data/samples/po/de/hello2.po +4 -4
- data/samples/po/de/hello_plural.po +9 -6
- data/samples/po/el/hello2.po +4 -4
- data/samples/po/el/hello_plural.po +3 -3
- data/samples/po/es/hello2.po +4 -4
- data/samples/po/es/hello_plural.po +6 -6
- data/samples/po/fr/hello2.po +4 -4
- data/samples/po/fr/hello_plural.po +3 -3
- data/samples/po/hello2.pot +2 -2
- data/samples/po/hello_plural.pot +1 -1
- data/samples/po/it/hello2.po +4 -4
- data/samples/po/it/hello_plural.po +4 -5
- data/samples/po/ja/hello2.po +4 -4
- data/samples/po/ja/hello_plural.po +4 -5
- data/samples/po/ko/hello2.po +4 -4
- data/samples/po/ko/hello_plural.po +10 -7
- data/samples/po/nl/hello2.po +4 -4
- data/samples/po/nl/hello_plural.po +6 -7
- data/samples/po/pt_BR/hello2.po +4 -4
- data/samples/po/pt_BR/hello_plural.po +6 -6
- data/samples/po/ru/hello2.po +4 -4
- data/samples/po/ru/hello_plural.po +10 -7
- data/samples/po/sv/hello2.po +4 -4
- data/samples/po/sv/hello_plural.po +4 -4
- data/samples/po/zh/hello.po +23 -0
- data/samples/po/zh/hello2.po +31 -0
- data/samples/po/zh/hello_noop.po +27 -0
- data/samples/po/zh/hello_plural.po +25 -0
- data/samples/po/zh/helloglade2.po +31 -0
- data/samples/po/zh/hellogtk.po +23 -0
- data/samples/po/zh/hellotk.po +23 -0
- data/samples/rails/README +2 -2
- data/samples/rails/lib/tasks/gettext.rake +0 -3
- data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/po/blog.pot +1 -1
- data/samples/rails/po/cs/blog.po +1 -1
- data/samples/rails/po/de/blog.po +1 -1
- data/samples/rails/po/el/blog.po +1 -1
- data/samples/rails/po/en/blog.po +3 -3
- data/samples/rails/po/es/blog.po +1 -1
- data/samples/rails/po/fr/blog.po +1 -1
- data/samples/rails/po/it/blog.po +109 -0
- data/samples/rails/po/ja/blog.po +1 -14
- data/samples/rails/po/ko/blog.po +2 -2
- data/samples/rails/po/nl/blog.po +1 -1
- data/samples/rails/po/pt_BR/blog.po +1 -1
- data/samples/rails/po/ru/blog.po +1 -2
- data/samples/rails/po/zh/blog.po +109 -0
- data/samples/rails/vendor/plugins/gettext/README +17 -0
- data/samples/rails/vendor/plugins/gettext/Rakefile +17 -0
- data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +16 -35
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/de/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/el/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/es/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/fr/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/ja/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/ru/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{po → vendor/plugins/gettext/po}/cs/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/de/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/el/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/es/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/fr/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/gettext_plugin.pot +4 -4
- data/samples/rails/vendor/plugins/gettext/po/it/gettext_plugin.po +27 -0
- data/samples/rails/{po → vendor/plugins/gettext/po}/ja/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/ko/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/nl/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/pt_BR/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/ru/gettext_plugin.po +4 -5
- data/samples/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po +27 -0
- data/test/gettext_test.rb +18 -14
- data/test/gettext_test_multi_textdomain.rb +49 -0
- data/test/locale/fr/LC_MESSAGES/test6.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test6.mo +0 -0
- data/test/po/fr/test6.po +23 -0
- data/test/po/ja/test6.po +23 -0
- data/test/test.sh +3 -1
- data/test/testlib1.rb +0 -5
- data/test/testlib5.rb +70 -0
- data/test/testlib6.rb +19 -0
- metadata +128 -26
- data/COPYING.ja +0 -51
- data/po/it/messages.mo +0 -0
- data/samples/cgi/po/it/messages.mo +0 -0
data/po/de/rgettext.po
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
#
|
|
11
11
|
msgid ""
|
|
12
12
|
msgstr ""
|
|
13
|
-
"Project-Id-Version: ruby-gettext 1.
|
|
13
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date: 2006-04
|
|
15
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
16
16
|
"PO-Revision-Date: 2005-12-27 17:00W. Europe Standard Time\n"
|
|
17
17
|
"Last-Translator: Sasa Ebach <se@digitale-wertschoepfung.de>\n"
|
|
18
18
|
"Language-Team: German <gnome-de@gnome.org>\n"
|
|
@@ -98,10 +98,14 @@ msgstr "'%{file}' wurde nicht gefunden."
|
|
|
98
98
|
msgid "Ignored '%{file}'. Solve dependencies first."
|
|
99
99
|
msgstr "Habe '%{file}' ignoriert. Bitte zuerst die Abhängigkeiten auflösen."
|
|
100
100
|
|
|
101
|
-
#: lib/gettext/parser/activerecord.rb:
|
|
101
|
+
#: lib/gettext/parser/activerecord.rb:85
|
|
102
102
|
msgid "No database is available."
|
|
103
103
|
msgstr "Es ist keine Datenbank vorhanden."
|
|
104
104
|
|
|
105
|
+
#: lib/gettext/parser/activerecord.rb:116
|
|
106
|
+
msgid "rubygems are not found."
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
105
109
|
#: lib/gettext/parser/glade.rb:75
|
|
106
110
|
msgid "%s is not glade-2.0 format."
|
|
107
111
|
msgstr "%s liegt nicht im Glade-2.0-Format vor."
|
data/po/el/rails.po
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
#
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: ruby-gettext 1.
|
|
12
|
-
"POT-Creation-Date: 2006-04
|
|
11
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
12
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
13
13
|
"PO-Revision-Date: 2006-01-06 19:50+0100\n"
|
|
14
14
|
"Last-Translator: damphyr <damphyr@gmx.net>\n"
|
|
15
15
|
"Language-Team: Greek\n"
|
|
@@ -18,61 +18,61 @@ msgstr ""
|
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
20
|
|
|
21
|
-
#: lib/gettext/rails.rb:
|
|
21
|
+
#: lib/gettext/rails.rb:277
|
|
22
22
|
msgid "%{fn} is not included in the list"
|
|
23
23
|
msgstr "το %{fn} δεν περιλαμβάνεται στη λίστα"
|
|
24
24
|
|
|
25
|
-
#: lib/gettext/rails.rb:
|
|
25
|
+
#: lib/gettext/rails.rb:278
|
|
26
26
|
msgid "%{fn} is reserved"
|
|
27
27
|
msgstr "το %{fn} είναι κατειλημένο"
|
|
28
28
|
|
|
29
|
-
#: lib/gettext/rails.rb:
|
|
29
|
+
#: lib/gettext/rails.rb:279
|
|
30
30
|
msgid "%{fn} is invalid"
|
|
31
31
|
msgstr "το %{fn} είναι άκυρο"
|
|
32
32
|
|
|
33
|
-
#: lib/gettext/rails.rb:
|
|
33
|
+
#: lib/gettext/rails.rb:280
|
|
34
34
|
msgid "%{fn} doesn't match confirmation"
|
|
35
35
|
msgstr "το %{fn} δεν ταιριάζει με την επιβεβαίωση του"
|
|
36
36
|
|
|
37
|
-
#: lib/gettext/rails.rb:
|
|
37
|
+
#: lib/gettext/rails.rb:281
|
|
38
38
|
msgid "%{fn} must be accepted"
|
|
39
39
|
msgstr "το %{fn} πρέπει να γίνει δεκτό"
|
|
40
40
|
|
|
41
|
-
#: lib/gettext/rails.rb:
|
|
41
|
+
#: lib/gettext/rails.rb:282
|
|
42
42
|
msgid "%{fn} can't be empty"
|
|
43
43
|
msgstr "το %{fn} δεν γίνεται να είναι κενό"
|
|
44
44
|
|
|
45
|
-
#: lib/gettext/rails.rb:
|
|
45
|
+
#: lib/gettext/rails.rb:283
|
|
46
46
|
msgid "%{fn} can't be blank"
|
|
47
47
|
msgstr "το %{fn} δεν γίνεται να είναι κενό"
|
|
48
48
|
|
|
49
|
-
#: lib/gettext/rails.rb:
|
|
49
|
+
#: lib/gettext/rails.rb:284
|
|
50
50
|
msgid "%{fn} is too long (max is %d characters)"
|
|
51
51
|
msgstr "το %{fn} είναι πολύ μακρύ (το μέγιστο είναι %d χαρακτήρες)"
|
|
52
52
|
|
|
53
|
-
#: lib/gettext/rails.rb:
|
|
53
|
+
#: lib/gettext/rails.rb:285
|
|
54
54
|
msgid "%{fn} is too short (min is %d characters)"
|
|
55
55
|
msgstr "το %{fn} είναι πολύ μικρό (το ελάχιστο είναι %d χαρακτήρες)"
|
|
56
56
|
|
|
57
|
-
#: lib/gettext/rails.rb:
|
|
57
|
+
#: lib/gettext/rails.rb:286
|
|
58
58
|
msgid "%{fn} is the wrong length (should be %d characters)"
|
|
59
59
|
msgstr "το %{fn} έχει λάθος μήκος (πρέπει να είναι %d χαρακτήρες)"
|
|
60
60
|
|
|
61
|
-
#: lib/gettext/rails.rb:
|
|
61
|
+
#: lib/gettext/rails.rb:287
|
|
62
62
|
msgid "%{fn} has already been taken"
|
|
63
63
|
msgstr "το %{fn} είναι ήδη κατειλημένο"
|
|
64
64
|
|
|
65
|
-
#: lib/gettext/rails.rb:
|
|
65
|
+
#: lib/gettext/rails.rb:288
|
|
66
66
|
msgid "%{fn} is not a number"
|
|
67
67
|
msgstr "το %{fn} δεν είναι αριθμός"
|
|
68
68
|
|
|
69
|
-
#: lib/gettext/rails.rb:
|
|
69
|
+
#: lib/gettext/rails.rb:354
|
|
70
70
|
msgid "%{num} error prohibited this %{record} from being saved"
|
|
71
71
|
msgid_plural "%{num} errors prohibited this %{record} from being saved"
|
|
72
72
|
msgstr[0] "%{num} λάθος απέτρεψε την αποθήκευση της εγγραφής %{record}"
|
|
73
73
|
msgstr[1] "%{num} λάθη απέτρεψαν την αποθήκευση της εγγραφής %{record}"
|
|
74
74
|
|
|
75
|
-
#: lib/gettext/rails.rb:
|
|
75
|
+
#: lib/gettext/rails.rb:356
|
|
76
76
|
msgid "There was a problem with the following field:"
|
|
77
77
|
msgid_plural "There were problems with the following fields:"
|
|
78
78
|
msgstr[0] "Υπάρχουν προβλήματα στο παρακάτω πεδίο:"
|
data/po/el/rgettext.po
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
#
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: ruby-gettext 1.
|
|
12
|
-
"POT-Creation-Date: 2006-04
|
|
11
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
12
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
13
13
|
"PO-Revision-Date: 2006-01-06 19:50+0100\n"
|
|
14
14
|
"Last-Translator: damphyr <damphyr@gmx.net>\n"
|
|
15
15
|
"Language-Team: Greek\n"
|
|
@@ -92,10 +92,14 @@ msgstr "Δεν βρέθηκε το αρχείο '%{file}'"
|
|
|
92
92
|
msgid "Ignored '%{file}'. Solve dependencies first."
|
|
93
93
|
msgstr "Το '%{file}' αγνοήθηκε. Πρέπει να επιλυθούν οι εξαρτήσεις πρώτα"
|
|
94
94
|
|
|
95
|
-
#: lib/gettext/parser/activerecord.rb:
|
|
95
|
+
#: lib/gettext/parser/activerecord.rb:85
|
|
96
96
|
msgid "No database is available."
|
|
97
97
|
msgstr "Καμία βάση δεδομένων δεν είναι διαθέσιμη"
|
|
98
98
|
|
|
99
|
+
#: lib/gettext/parser/activerecord.rb:116
|
|
100
|
+
msgid "rubygems are not found."
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
99
103
|
#: lib/gettext/parser/glade.rb:75
|
|
100
104
|
msgid "%s is not glade-2.0 format."
|
|
101
105
|
msgstr "το %s δεν είναι σε μορφή glade-2.0"
|
data/po/es/rails.po
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
#, fuzzy
|
|
10
10
|
msgid ""
|
|
11
11
|
msgstr ""
|
|
12
|
-
"Project-Id-Version: ruby-gettext 1.
|
|
13
|
-
"POT-Creation-Date: 2006-04
|
|
12
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
13
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
14
14
|
"PO-Revision-Date: 2005-12-17 14:33+0900\n"
|
|
15
15
|
"Last-Translator: David Espada <davinci@escomposlinux.org>\n"
|
|
16
16
|
"Language-Team: Spanish\n"
|
|
@@ -19,61 +19,61 @@ msgstr ""
|
|
|
19
19
|
"Content-Transfer-Encoding: 8bit\n"
|
|
20
20
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
21
21
|
|
|
22
|
-
#: lib/gettext/rails.rb:
|
|
22
|
+
#: lib/gettext/rails.rb:277
|
|
23
23
|
msgid "%{fn} is not included in the list"
|
|
24
24
|
msgstr "%{fn} no está incluido en la lista"
|
|
25
25
|
|
|
26
|
-
#: lib/gettext/rails.rb:
|
|
26
|
+
#: lib/gettext/rails.rb:278
|
|
27
27
|
msgid "%{fn} is reserved"
|
|
28
28
|
msgstr "%{fn} está reservado"
|
|
29
29
|
|
|
30
|
-
#: lib/gettext/rails.rb:
|
|
30
|
+
#: lib/gettext/rails.rb:279
|
|
31
31
|
msgid "%{fn} is invalid"
|
|
32
32
|
msgstr "%{fn} no es válido"
|
|
33
33
|
|
|
34
|
-
#: lib/gettext/rails.rb:
|
|
34
|
+
#: lib/gettext/rails.rb:280
|
|
35
35
|
msgid "%{fn} doesn't match confirmation"
|
|
36
36
|
msgstr "%{fn} no se ajusta a la confirmación"
|
|
37
37
|
|
|
38
|
-
#: lib/gettext/rails.rb:
|
|
38
|
+
#: lib/gettext/rails.rb:281
|
|
39
39
|
msgid "%{fn} must be accepted"
|
|
40
40
|
msgstr "%{fn} debe ser aceptado"
|
|
41
41
|
|
|
42
|
-
#: lib/gettext/rails.rb:
|
|
42
|
+
#: lib/gettext/rails.rb:282
|
|
43
43
|
msgid "%{fn} can't be empty"
|
|
44
44
|
msgstr "%{fn} no puede estar vacío"
|
|
45
45
|
|
|
46
|
-
#: lib/gettext/rails.rb:
|
|
46
|
+
#: lib/gettext/rails.rb:283
|
|
47
47
|
msgid "%{fn} can't be blank"
|
|
48
48
|
msgstr "%{fn} no puede estar en blanco"
|
|
49
49
|
|
|
50
|
-
#: lib/gettext/rails.rb:
|
|
50
|
+
#: lib/gettext/rails.rb:284
|
|
51
51
|
msgid "%{fn} is too long (max is %d characters)"
|
|
52
52
|
msgstr "%{fn} es demasiado largo (máximo de %d caracteres)"
|
|
53
53
|
|
|
54
|
-
#: lib/gettext/rails.rb:
|
|
54
|
+
#: lib/gettext/rails.rb:285
|
|
55
55
|
msgid "%{fn} is too short (min is %d characters)"
|
|
56
56
|
msgstr "%{fn} es demasiado corto (mínimo de %d caracteres)"
|
|
57
57
|
|
|
58
|
-
#: lib/gettext/rails.rb:
|
|
58
|
+
#: lib/gettext/rails.rb:286
|
|
59
59
|
msgid "%{fn} is the wrong length (should be %d characters)"
|
|
60
60
|
msgstr "%{fn} tiene longitud incorrecta (debería tener %d caracteres)"
|
|
61
61
|
|
|
62
|
-
#: lib/gettext/rails.rb:
|
|
62
|
+
#: lib/gettext/rails.rb:287
|
|
63
63
|
msgid "%{fn} has already been taken"
|
|
64
64
|
msgstr "%{fn} ya se ha tomado"
|
|
65
65
|
|
|
66
|
-
#: lib/gettext/rails.rb:
|
|
66
|
+
#: lib/gettext/rails.rb:288
|
|
67
67
|
msgid "%{fn} is not a number"
|
|
68
68
|
msgstr "%{fn} no es un número"
|
|
69
69
|
|
|
70
|
-
#: lib/gettext/rails.rb:
|
|
70
|
+
#: lib/gettext/rails.rb:354
|
|
71
71
|
msgid "%{num} error prohibited this %{record} from being saved"
|
|
72
72
|
msgid_plural "%{num} errors prohibited this %{record} from being saved"
|
|
73
73
|
msgstr[0] "%{num} error impide que este %{record} sea guardado"
|
|
74
74
|
msgstr[1] "%{num} errores impiden que este %{record} sea guardado"
|
|
75
75
|
|
|
76
|
-
#: lib/gettext/rails.rb:
|
|
76
|
+
#: lib/gettext/rails.rb:356
|
|
77
77
|
msgid "There was a problem with the following field:"
|
|
78
78
|
msgid_plural "There were problems with the following fields:"
|
|
79
79
|
msgstr[0] "Ha habido problemas con el siguiente campo:"
|
data/po/es/rgettext.po
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
#
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: ruby-gettext 1.
|
|
12
|
-
"POT-Creation-Date: 2006-04
|
|
11
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
12
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
13
13
|
"PO-Revision-Date: 2005-04-24 14:54+0100\n"
|
|
14
14
|
"Last-Translator: David Espada <davinci at escomposlinux.org>\n"
|
|
15
15
|
"Language-Team: Gabriele Renzi <davinci at escomposlinux.org>\n"
|
|
@@ -94,10 +94,14 @@ msgstr "'%{file}' no se encuentra"
|
|
|
94
94
|
msgid "Ignored '%{file}'. Solve dependencies first."
|
|
95
95
|
msgstr "Ignorado '%{file}'. Resuelva dependencias primero."
|
|
96
96
|
|
|
97
|
-
#: lib/gettext/parser/activerecord.rb:
|
|
97
|
+
#: lib/gettext/parser/activerecord.rb:85
|
|
98
98
|
msgid "No database is available."
|
|
99
99
|
msgstr "No hay disponible base de datos."
|
|
100
100
|
|
|
101
|
+
#: lib/gettext/parser/activerecord.rb:116
|
|
102
|
+
msgid "rubygems are not found."
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
101
105
|
#: lib/gettext/parser/glade.rb:75
|
|
102
106
|
msgid "%s is not glade-2.0 format."
|
|
103
107
|
msgstr "%s no tiene formato glade-2.0."
|
data/po/fr/rails.po
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
#
|
|
10
10
|
msgid ""
|
|
11
11
|
msgstr ""
|
|
12
|
-
"Project-Id-Version: ruby-gettext 1.
|
|
13
|
-
"POT-Creation-Date: 2006-04
|
|
12
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
13
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
14
14
|
"PO-Revision-Date: 2005-12-17 14:33+0900\n"
|
|
15
15
|
"Last-Translator: Laurent Sansonetti <lrz@rubymonks.org>\n"
|
|
16
16
|
"Language-Team: French\n"
|
|
@@ -19,62 +19,62 @@ msgstr ""
|
|
|
19
19
|
"Content-Transfer-Encoding: 8bit\n"
|
|
20
20
|
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
|
21
21
|
|
|
22
|
-
#: lib/gettext/rails.rb:
|
|
22
|
+
#: lib/gettext/rails.rb:277
|
|
23
23
|
msgid "%{fn} is not included in the list"
|
|
24
24
|
msgstr "%{fn} n'est pas inclus dans la liste"
|
|
25
25
|
|
|
26
|
-
#: lib/gettext/rails.rb:
|
|
26
|
+
#: lib/gettext/rails.rb:278
|
|
27
27
|
msgid "%{fn} is reserved"
|
|
28
28
|
msgstr "%{fn} est réservé"
|
|
29
29
|
|
|
30
|
-
#: lib/gettext/rails.rb:
|
|
30
|
+
#: lib/gettext/rails.rb:279
|
|
31
31
|
msgid "%{fn} is invalid"
|
|
32
32
|
msgstr "%{fn} est invalide"
|
|
33
33
|
|
|
34
|
-
#: lib/gettext/rails.rb:
|
|
34
|
+
#: lib/gettext/rails.rb:280
|
|
35
35
|
msgid "%{fn} doesn't match confirmation"
|
|
36
36
|
msgstr "%{fn} ne correspond pas à la confirmation"
|
|
37
37
|
|
|
38
|
-
#: lib/gettext/rails.rb:
|
|
38
|
+
#: lib/gettext/rails.rb:281
|
|
39
39
|
msgid "%{fn} must be accepted"
|
|
40
40
|
msgstr "%{fn} doit être accepté"
|
|
41
41
|
|
|
42
|
-
#: lib/gettext/rails.rb:
|
|
42
|
+
#: lib/gettext/rails.rb:282
|
|
43
43
|
msgid "%{fn} can't be empty"
|
|
44
44
|
msgstr "%{fn} ne peut être vide"
|
|
45
45
|
|
|
46
|
-
#: lib/gettext/rails.rb:
|
|
46
|
+
#: lib/gettext/rails.rb:283
|
|
47
47
|
msgid "%{fn} can't be blank"
|
|
48
48
|
msgstr "%{fn} ne peut être blanc"
|
|
49
49
|
|
|
50
|
-
#: lib/gettext/rails.rb:
|
|
50
|
+
#: lib/gettext/rails.rb:284
|
|
51
51
|
msgid "%{fn} is too long (max is %d characters)"
|
|
52
52
|
msgstr "%{fn} est trop long (max. %d caractères)"
|
|
53
53
|
|
|
54
|
-
#: lib/gettext/rails.rb:
|
|
54
|
+
#: lib/gettext/rails.rb:285
|
|
55
55
|
msgid "%{fn} is too short (min is %d characters)"
|
|
56
56
|
msgstr "%{fn} est trop petit (min. %d caractères)"
|
|
57
57
|
|
|
58
|
-
#: lib/gettext/rails.rb:
|
|
58
|
+
#: lib/gettext/rails.rb:286
|
|
59
59
|
msgid "%{fn} is the wrong length (should be %d characters)"
|
|
60
60
|
msgstr "%{fn} a une mauvaise longueur (devrait être de %d caractères)"
|
|
61
61
|
|
|
62
|
-
#: lib/gettext/rails.rb:
|
|
62
|
+
#: lib/gettext/rails.rb:287
|
|
63
63
|
msgid "%{fn} has already been taken"
|
|
64
64
|
msgstr "%{fn} est déjà pris"
|
|
65
65
|
|
|
66
|
-
#: lib/gettext/rails.rb:
|
|
66
|
+
#: lib/gettext/rails.rb:288
|
|
67
67
|
msgid "%{fn} is not a number"
|
|
68
68
|
msgstr "%{fn} n'est pas un nombre"
|
|
69
69
|
|
|
70
|
-
#: lib/gettext/rails.rb:
|
|
70
|
+
#: lib/gettext/rails.rb:354
|
|
71
71
|
msgid "%{num} error prohibited this %{record} from being saved"
|
|
72
72
|
msgid_plural "%{num} errors prohibited this %{record} from being saved"
|
|
73
73
|
msgstr[0] "%{num} erreur a empeché l'enregistrement '%{record}' d'être sauvé"
|
|
74
74
|
msgstr[1] ""
|
|
75
75
|
"%{num} erreurs ont empeché l'enregistrement '%{record}' d'être sauvé"
|
|
76
76
|
|
|
77
|
-
#: lib/gettext/rails.rb:
|
|
77
|
+
#: lib/gettext/rails.rb:356
|
|
78
78
|
msgid "There was a problem with the following field:"
|
|
79
79
|
msgid_plural "There were problems with the following fields:"
|
|
80
80
|
msgstr[0] "Il y a eu des problèmes avec le champ suivant:"
|
data/po/fr/rgettext.po
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
#
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: ruby-gettext 1.
|
|
12
|
-
"POT-Creation-Date: 2006-04
|
|
11
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
12
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
13
13
|
"PO-Revision-Date: 2004-11-04 09:22+0100\n"
|
|
14
14
|
"Last-Translator: Laurent Sansonetti\n"
|
|
15
15
|
"Language-Team: French\n"
|
|
@@ -94,10 +94,14 @@ msgstr "'%{file}' introuvable."
|
|
|
94
94
|
msgid "Ignored '%{file}'. Solve dependencies first."
|
|
95
95
|
msgstr "'%{file}' ignoré. Corrigez les dépendances d'abord."
|
|
96
96
|
|
|
97
|
-
#: lib/gettext/parser/activerecord.rb:
|
|
97
|
+
#: lib/gettext/parser/activerecord.rb:85
|
|
98
98
|
msgid "No database is available."
|
|
99
99
|
msgstr "Aucune base de donnée disponible."
|
|
100
100
|
|
|
101
|
+
#: lib/gettext/parser/activerecord.rb:116
|
|
102
|
+
msgid "rubygems are not found."
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
101
105
|
#: lib/gettext/parser/glade.rb:75
|
|
102
106
|
msgid "%s is not glade-2.0 format."
|
|
103
107
|
msgstr "%s n'est pas au format glade-2.0."
|
data/po/it/rails.po
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
#
|
|
2
|
+
# a po-file for Ruby-GetText-Package and Ruby on Rails.
|
|
3
|
+
#
|
|
4
|
+
# Copyright (C) 2006 Masao Mutoh
|
|
5
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.
|
|
6
|
+
#
|
|
7
|
+
# Marco Lazzeri <marco.lazzeri at gmail.com>, 2006.
|
|
8
|
+
#
|
|
9
|
+
msgid ""
|
|
10
|
+
msgstr ""
|
|
11
|
+
"Project-Id-Version: ruby-gettext 1.5.0\n"
|
|
12
|
+
"POT-Creation-Date: 2006-06-04 18:48+0900\n"
|
|
13
|
+
"PO-Revision-Date: 2005-12-17 14:33+0900\n"
|
|
14
|
+
"Last-Translator: Marco Lazzeri <marco.lazzeri at gmail.com>\n"
|
|
15
|
+
"Language-Team: Italian\n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
+
|
|
21
|
+
#: lib/gettext/rails.rb:277
|
|
22
|
+
msgid "%{fn} is not included in the list"
|
|
23
|
+
msgstr "%{fn} non è incluso nella lista"
|
|
24
|
+
|
|
25
|
+
#: lib/gettext/rails.rb:278
|
|
26
|
+
msgid "%{fn} is reserved"
|
|
27
|
+
msgstr "%{fn} è una parola riservata"
|
|
28
|
+
|
|
29
|
+
#: lib/gettext/rails.rb:279
|
|
30
|
+
msgid "%{fn} is invalid"
|
|
31
|
+
msgstr "%{fn} non è valido"
|
|
32
|
+
|
|
33
|
+
#: lib/gettext/rails.rb:280
|
|
34
|
+
msgid "%{fn} doesn't match confirmation"
|
|
35
|
+
msgstr "%{fn} non corrisponde alla conferma"
|
|
36
|
+
|
|
37
|
+
#: lib/gettext/rails.rb:281
|
|
38
|
+
msgid "%{fn} must be accepted"
|
|
39
|
+
msgstr "%{} dev'essere accettato"
|
|
40
|
+
|
|
41
|
+
#: lib/gettext/rails.rb:282
|
|
42
|
+
msgid "%{fn} can't be empty"
|
|
43
|
+
msgstr "%{fn} non può essere vuoto"
|
|
44
|
+
|
|
45
|
+
#: lib/gettext/rails.rb:283
|
|
46
|
+
msgid "%{fn} can't be blank"
|
|
47
|
+
msgstr "%{fn} non può essere vuoto"
|
|
48
|
+
|
|
49
|
+
#: lib/gettext/rails.rb:284
|
|
50
|
+
msgid "%{fn} is too long (max is %d characters)"
|
|
51
|
+
msgstr "%{fn} è troppo lungo (la lunghezza massima è di %d caratteri)"
|
|
52
|
+
|
|
53
|
+
#: lib/gettext/rails.rb:285
|
|
54
|
+
msgid "%{fn} is too short (min is %d characters)"
|
|
55
|
+
msgstr "%{fn} è troppo corto (la lunghezza minima è di %d caratetteri)"
|
|
56
|
+
|
|
57
|
+
#: lib/gettext/rails.rb:286
|
|
58
|
+
msgid "%{fn} is the wrong length (should be %d characters)"
|
|
59
|
+
msgstr "%{fn} lunghezza errata (deve essere lungo %d caratteri)"
|
|
60
|
+
|
|
61
|
+
#: lib/gettext/rails.rb:287
|
|
62
|
+
msgid "%{fn} has already been taken"
|
|
63
|
+
msgstr "%{fn} è già in uso"
|
|
64
|
+
|
|
65
|
+
#: lib/gettext/rails.rb:288
|
|
66
|
+
msgid "%{fn} is not a number"
|
|
67
|
+
msgstr "%{fn} non è un numero"
|
|
68
|
+
|
|
69
|
+
#: lib/gettext/rails.rb:354
|
|
70
|
+
msgid "%{num} error prohibited this %{record} from being saved"
|
|
71
|
+
msgid_plural "%{num} errors prohibited this %{record} from being saved"
|
|
72
|
+
msgstr[0] "%{num} errore impedisce il salvataggio di questo %{record}"
|
|
73
|
+
msgstr[1] "%{num} errori impediscono il salvataggio di questo %{record}"
|
|
74
|
+
|
|
75
|
+
#: lib/gettext/rails.rb:356
|
|
76
|
+
msgid "There was a problem with the following field:"
|
|
77
|
+
msgid_plural "There were problems with the following fields:"
|
|
78
|
+
msgstr[0] "Si è verificato un problema con il seguente campo:"
|
|
79
|
+
msgstr[1] "Si è verificato un problema con i seguenti campi:"
|