gettext 1.7.0-mswin32 → 1.8.0-mswin32

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.
Files changed (155) hide show
  1. data/ChangeLog +139 -0
  2. data/NEWS +31 -0
  3. data/README +31 -15
  4. data/Rakefile +3 -2
  5. data/bin/rgettext +1 -1
  6. data/bin/rmsgfmt +1 -1
  7. data/bin/rmsgmerge +1 -1
  8. data/data/locale/cs/LC_MESSAGES/rails.mo +0 -0
  9. data/data/locale/cs/LC_MESSAGES/rgettext.mo +0 -0
  10. data/data/locale/de/LC_MESSAGES/rails.mo +0 -0
  11. data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
  12. data/data/locale/el/LC_MESSAGES/rails.mo +0 -0
  13. data/data/locale/el/LC_MESSAGES/rgettext.mo +0 -0
  14. data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
  15. data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
  16. data/data/locale/et/LC_MESSAGES/rails.mo +0 -0
  17. data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
  18. data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
  19. data/data/locale/it/LC_MESSAGES/rails.mo +0 -0
  20. data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
  21. data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
  22. data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
  23. data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
  24. data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
  25. data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
  26. data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
  27. data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
  28. data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
  29. data/data/locale/ru/LC_MESSAGES/rails.mo +0 -0
  30. data/data/locale/ru/LC_MESSAGES/rgettext.mo +0 -0
  31. data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
  32. data/data/locale/zh/LC_MESSAGES/rails.mo +0 -0
  33. data/data/locale/zh/LC_MESSAGES/rgettext.mo +0 -0
  34. data/data/locale/zh_TW/LC_MESSAGES/rails.mo +0 -0
  35. data/data/locale/zh_TW/LC_MESSAGES/rgettext.mo +0 -0
  36. data/lib/gettext.rb +50 -23
  37. data/lib/gettext/active_record.rb +275 -0
  38. data/lib/gettext/locale.rb +9 -2
  39. data/lib/gettext/locale_cgi.rb +5 -4
  40. data/lib/gettext/locale_object.rb +5 -4
  41. data/lib/gettext/parser/{activerecord.rb → active_record.rb} +31 -14
  42. data/lib/gettext/parser/ruby.rb +48 -44
  43. data/lib/gettext/rails.rb +111 -253
  44. data/lib/gettext/rgettext.rb +34 -6
  45. data/lib/gettext/string.rb +3 -2
  46. data/lib/gettext/textdomain.rb +3 -3
  47. data/lib/gettext/version.rb +1 -1
  48. data/po/cs/rails.po +61 -61
  49. data/po/cs/rgettext.po +37 -55
  50. data/po/de/rails.po +73 -72
  51. data/po/de/rgettext.po +39 -56
  52. data/po/el/rails.po +60 -60
  53. data/po/el/rgettext.po +26 -44
  54. data/po/es/rails.po +60 -60
  55. data/po/es/rgettext.po +28 -52
  56. data/po/et/rails.po +118 -0
  57. data/po/fr/rails.po +60 -60
  58. data/po/fr/rgettext.po +26 -46
  59. data/po/it/rails.po +68 -68
  60. data/po/it/rgettext.po +35 -53
  61. data/po/ja/rails.po +62 -61
  62. data/po/ja/rgettext.po +27 -45
  63. data/po/ko/rails.po +61 -60
  64. data/po/ko/rgettext.po +34 -54
  65. data/po/nl/rails.po +59 -60
  66. data/po/nl/rgettext.po +35 -55
  67. data/po/pt_BR/rails.po +74 -73
  68. data/po/pt_BR/rgettext.po +36 -52
  69. data/po/rails.pot +61 -61
  70. data/po/rgettext.pot +25 -43
  71. data/po/ru/rails.po +61 -62
  72. data/po/ru/rgettext.po +26 -51
  73. data/po/sv/rgettext.po +27 -44
  74. data/po/zh/rails.po +62 -60
  75. data/po/zh/rgettext.po +28 -47
  76. data/po/zh_TW/rails.po +114 -0
  77. data/po/zh_TW/rgettext.po +121 -0
  78. data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo +0 -0
  79. data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo +0 -0
  80. data/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo +0 -0
  81. data/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo +0 -0
  82. data/samples/cgi/po/zh_TW/helloerb1.po +67 -0
  83. data/samples/cgi/po/zh_TW/helloerb2.po +54 -0
  84. data/samples/cgi/po/zh_TW/hellolib.po +26 -0
  85. data/samples/cgi/po/zh_TW/main.po +79 -0
  86. data/samples/locale/zh_TW/LC_MESSAGES/hello.mo +0 -0
  87. data/samples/locale/zh_TW/LC_MESSAGES/hello2.mo +0 -0
  88. data/samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo +0 -0
  89. data/samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo +0 -0
  90. data/samples/locale/zh_TW/LC_MESSAGES/helloglade2.mo +0 -0
  91. data/samples/locale/zh_TW/LC_MESSAGES/hellogtk.mo +0 -0
  92. data/samples/locale/zh_TW/LC_MESSAGES/hellotk.mo +0 -0
  93. data/samples/po/hellogtk.pot +1 -1
  94. data/samples/po/zh_TW/hello.po +26 -0
  95. data/samples/po/zh_TW/hello2.po +34 -0
  96. data/samples/po/zh_TW/hello_noop.po +30 -0
  97. data/samples/po/zh_TW/hello_plural.po +28 -0
  98. data/samples/po/zh_TW/helloglade2.po +40 -0
  99. data/samples/po/zh_TW/hellogtk.po +25 -0
  100. data/samples/po/zh_TW/hellotk.po +26 -0
  101. data/samples/rails/README +8 -11
  102. data/samples/rails/app/controllers/application.rb +6 -9
  103. data/samples/rails/app/views/layouts/blog.rhtml +1 -1
  104. data/samples/rails/config/database.yml +1 -1
  105. data/samples/rails/config/environment.rb +1 -0
  106. data/samples/rails/db/schema.rb +90 -0
  107. data/samples/rails/lib/tasks/gettext.rake +1 -1
  108. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  109. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  110. data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
  111. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  112. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  113. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  114. data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
  115. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  116. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  117. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  118. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  119. data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
  120. data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
  121. data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
  122. data/samples/rails/po/blog.pot +106 -110
  123. data/samples/rails/po/cs/blog.po +110 -115
  124. data/samples/rails/po/de/blog.po +107 -112
  125. data/samples/rails/po/el/blog.po +105 -109
  126. data/samples/rails/po/en/blog.po +107 -111
  127. data/samples/rails/po/es/blog.po +105 -110
  128. data/samples/rails/po/fr/blog.po +105 -109
  129. data/samples/rails/po/it/blog.po +105 -109
  130. data/samples/rails/po/ja/blog.po +105 -109
  131. data/samples/rails/po/ko/blog.po +105 -109
  132. data/samples/rails/po/nl/blog.po +105 -110
  133. data/samples/rails/po/pt_BR/blog.po +105 -109
  134. data/samples/rails/po/ru/blog.po +105 -107
  135. data/samples/rails/po/zh/blog.po +105 -109
  136. data/samples/rails/po/zh_TW/blog.po +107 -0
  137. data/samples/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES/gettext_plugin.mo +0 -0
  138. data/samples/rails/vendor/plugins/gettext/po/zh_TW/gettext_plugin.po +30 -0
  139. data/test/Rakefile +44 -0
  140. data/test/fixtures/developer.rb +5 -0
  141. data/test/fixtures/developers.yml +21 -0
  142. data/test/fixtures/reply.rb +40 -0
  143. data/test/fixtures/topic.rb +23 -0
  144. data/test/fixtures/topics.yml +22 -0
  145. data/test/gettext_test.rb +2 -2
  146. data/test/gettext_test_active_record.rb +1479 -0
  147. data/test/gettext_test_rails.rb +2 -0
  148. data/test/locale/ja/LC_MESSAGES/active_record.mo +0 -0
  149. data/test/po/active_record.pot +295 -0
  150. data/test/po/ja/active_record.po +294 -0
  151. data/test/test.sh +1 -0
  152. data/test/test_rubyparser.rb +10 -2
  153. metadata +66 -6
  154. data/samples/rails/db/mysql.sql +0 -8
  155. data/samples/rails/db/postgresql.sql +0 -7
@@ -1,112 +1,107 @@
1
- # GetText Sample Blog on RoR.
2
- #
3
- # Copyright (C) 2005 Masao Mutoh
4
- #
5
- # This file is distributed under the same license as the Ruby-GetText-Package.
6
- #
7
- # Sasa Ebach, 2005
8
- # Sven Herzberg <herzi@abi02.de>, 2005.
9
- #
10
- # , fuzzy
11
- msgid ""
12
- msgstr ""
13
- "Project-Id-Version: blog 1.1.0\n"
14
- "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2006-06-04 22:51+0900\n"
16
- "PO-Revision-Date: 2005-12-27 17:04W. Europe Standard Time\n"
17
- "Last-Translator: Sasa Ebach <se@digitale-wertschoepfung.de>\n"
18
- "Language-Team: German <gnome-de@gnome.org>\n"
19
- "MIME-Version: 1.0\n"
20
- "Content-Type: text/plain; charset=UTF-8\n"
21
- "Content-Transfer-Encoding: 8bit\n"
22
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
-
24
- #: app/helpers/blog_helper.rb:43
25
- msgid "Ruby Links"
26
- msgstr "Links zu Ruby"
27
-
28
- #: app/helpers/blog_helper.rb:51
29
- msgid "Old articles"
30
- msgstr "Alte Einträge"
31
-
32
- #: app/models/article.rb:-
33
- msgid "article"
34
- msgstr "artikel"
35
-
36
- #: app/models/article.rb:-
37
- msgid "Article|Id"
38
- msgstr "Id"
39
-
40
- #: app/models/article.rb:-
41
- msgid "Article|Title"
42
- msgstr "Titel"
43
-
44
- #: app/models/article.rb:-
45
- msgid "Article|Description"
46
- msgstr "Beschreibung"
47
-
48
- #: app/models/article.rb:-
49
- msgid "Article|Lastupdate"
50
- msgstr "Letzte Aktualisierung"
51
-
52
- #: app/controllers/blog_controller.rb:33
53
- msgid "Article was successfully created."
54
- msgstr "Der Artikel wurde erfolgreich erstellt."
55
-
56
- #: app/controllers/blog_controller.rb:47
57
- msgid "Article was successfully updated."
58
- msgstr "Der Artikel wurde erfolgreich aktualisiert."
59
-
60
- #: app/views/blog/new.rhtml:13 app/views/blog/list.rhtml:15
61
- msgid "New article"
62
- msgstr "Neuer Artikel"
63
-
64
- #: app/views/blog/new.rhtml:17
65
- msgid "Create"
66
- msgstr "Erstellen"
67
-
68
- #: app/views/blog/new.rhtml:20 app/views/blog/edit.rhtml:21
69
- #: app/views/blog/show.rhtml:17
70
- msgid "Back"
71
- msgstr "Zurück"
72
-
73
- #: app/views/blog/_form.rhtml:16
74
- msgid "Lastupdate"
75
- msgstr "Letzte Aktualisierung"
76
-
77
- #: app/views/blog/_form.rhtml:18
78
- msgid "Title: Required."
79
- msgstr "Titel: Pflichtfeld."
80
-
81
- #: app/views/blog/_form.rhtml:21
82
- msgid "Description: More than 10 characters."
83
- msgstr "Beschreibung: Mehr als 10 Buchstaben."
84
-
85
- #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
86
- #: app/views/layouts/blog.rhtml:14
87
- msgid "GetText Sample Blog on RoR"
88
- msgstr "Gettext-Beispiel-Blog auf RoR"
89
-
90
- #: app/views/blog/list.rhtml:18
91
- msgid "No articles were found."
92
- msgstr "Keine Artikel gefunden."
93
-
94
- #: app/views/blog/edit.rhtml:12
95
- msgid "Editing article"
96
- msgstr "Artikel bearbeiten"
97
-
98
- #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
99
- msgid "Edit"
100
- msgstr "Bearbeiten"
101
-
102
- #: app/views/blog/edit.rhtml:19
103
- msgid "Show"
104
- msgstr "Anzeigen"
105
-
106
- #: app/views/blog/edit.rhtml:20
107
- msgid "Destroy"
108
- msgstr "Löschen"
109
-
110
- #: app/views/blog/edit.rhtml:20
111
- msgid "Are you sure?"
112
- msgstr "Sind Sie sicher?"
1
+ # GetText Sample Blog on RoR.
2
+ #
3
+ # Copyright (C) 2005,2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Sasa Ebach, 2005
8
+ # Sven Herzberg <herzi at abi02.de>, 2005.
9
+ #
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: blog 1.2.0\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "POT-Creation-Date: 2006-08-22 18:35+0900\n"
15
+ "PO-Revision-Date: 2005-12-27 17:04W. Europe Standard Time\n"
16
+ "Last-Translator: Sasa Ebach <se at digitale-wertschoepfung.de>\n"
17
+ "Language-Team: German <gnome-de at gnome.org>\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+
23
+ #: app/controllers/blog_controller.rb:33
24
+ msgid "Article was successfully created."
25
+ msgstr "Der Artikel wurde erfolgreich erstellt."
26
+
27
+ #: app/controllers/blog_controller.rb:47
28
+ msgid "Article was successfully updated."
29
+ msgstr "Der Artikel wurde erfolgreich aktualisiert."
30
+
31
+ #: app/helpers/blog_helper.rb:43
32
+ msgid "Ruby Links"
33
+ msgstr "Links zu Ruby"
34
+
35
+ #: app/helpers/blog_helper.rb:51
36
+ msgid "Old articles"
37
+ msgstr "Alte Einträge"
38
+
39
+ # app/models/article.rb:-
40
+ msgid "article"
41
+ msgstr "artikel"
42
+
43
+ # app/models/article.rb:-
44
+ msgid "Article|Title"
45
+ msgstr "Titel"
46
+
47
+ # app/models/article.rb:-
48
+ msgid "Article|Description"
49
+ msgstr "Beschreibung"
50
+
51
+ # app/models/article.rb:-
52
+ msgid "Article|Lastupdate"
53
+ msgstr "Letzte Aktualisierung"
54
+
55
+ #: app/views/blog/edit.rhtml:12
56
+ msgid "Editing article"
57
+ msgstr "Artikel bearbeiten"
58
+
59
+ #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
60
+ msgid "Edit"
61
+ msgstr "Bearbeiten"
62
+
63
+ #: app/views/blog/edit.rhtml:19
64
+ msgid "Show"
65
+ msgstr "Anzeigen"
66
+
67
+ #: app/views/blog/edit.rhtml:20
68
+ msgid "Destroy"
69
+ msgstr "Löschen"
70
+
71
+ #: app/views/blog/edit.rhtml:20
72
+ msgid "Are you sure?"
73
+ msgstr "Sind Sie sicher?"
74
+
75
+ #: app/views/blog/edit.rhtml:21 app/views/blog/new.rhtml:20
76
+ #: app/views/blog/show.rhtml:17
77
+ msgid "Back"
78
+ msgstr "Zurück"
79
+
80
+ #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
81
+ #: app/views/layouts/blog.rhtml:14
82
+ msgid "GetText Sample Blog on RoR"
83
+ msgstr "Gettext-Beispiel-Blog auf RoR"
84
+
85
+ #: app/views/blog/list.rhtml:15 app/views/blog/new.rhtml:13
86
+ msgid "New article"
87
+ msgstr "Neuer Artikel"
88
+
89
+ #: app/views/blog/list.rhtml:18
90
+ msgid "No articles were found."
91
+ msgstr "Keine Artikel gefunden."
92
+
93
+ #: app/views/blog/new.rhtml:17
94
+ msgid "Create"
95
+ msgstr "Erstellen"
96
+
97
+ #: app/views/blog/_form.rhtml:16
98
+ msgid "Lastupdate"
99
+ msgstr "Letzte Aktualisierung"
100
+
101
+ #: app/views/blog/_form.rhtml:18
102
+ msgid "Title: Required."
103
+ msgstr "Titel: Pflichtfeld."
104
+
105
+ #: app/views/blog/_form.rhtml:21
106
+ msgid "Description: More than 10 characters."
107
+ msgstr "Beschreibung: Mehr als 10 Buchstaben."
@@ -1,109 +1,105 @@
1
- # GetText Sample Blog on RoR.
2
- #
3
- # Copyright (C) 2005,2006 Masao Mutoh
4
- #
5
- # This file is distributed under the same license as the Ruby-GetText-Package.
6
- #
7
- # damphyr <damphyr@gmx.net>, 2006.
8
- #
9
- msgid ""
10
- msgstr ""
11
- "Project-Id-Version: blog 1.1.0\n"
12
- "POT-Creation-Date: 2006-06-04 22:51+0900\n"
13
- "PO-Revision-Date: 2006-01-06 19:50+0100\n"
14
- "Last-Translator: damphyr <damphyr@gmx.net>\n"
15
- "Language-Team: Greek\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
- #: app/helpers/blog_helper.rb:43
22
- msgid "Ruby Links"
23
- msgstr "Δεσμοί Ruby"
24
-
25
- #: app/helpers/blog_helper.rb:51
26
- msgid "Old articles"
27
- msgstr "Παλιά άρθρα"
28
-
29
- #: app/models/article.rb:-
30
- msgid "article"
31
- msgstr "άρθρο"
32
-
33
- #: app/models/article.rb:-
34
- msgid "Article|Id"
35
- msgstr "Νο."
36
-
37
- #: app/models/article.rb:-
38
- msgid "Article|Title"
39
- msgstr "Τίτλος"
40
-
41
- #: app/models/article.rb:-
42
- msgid "Article|Description"
43
- msgstr "Περιγραφή"
44
-
45
- #: app/models/article.rb:-
46
- msgid "Article|Lastupdate"
47
- msgstr "Τελευταία ενημέρωση"
48
-
49
- #: app/controllers/blog_controller.rb:33
50
- msgid "Article was successfully created."
51
- msgstr "Το άρθρο δημιουργήθηκε επιτυχώς"
52
-
53
- #: app/controllers/blog_controller.rb:47
54
- msgid "Article was successfully updated."
55
- msgstr "Το άρθρο ενημερώθηκε επιτυχώς"
56
-
57
- #: app/views/blog/new.rhtml:13 app/views/blog/list.rhtml:15
58
- msgid "New article"
59
- msgstr "Νέο άρθρο"
60
-
61
- #: app/views/blog/new.rhtml:17
62
- msgid "Create"
63
- msgstr "Δημιουργία"
64
-
65
- #: app/views/blog/new.rhtml:20 app/views/blog/edit.rhtml:21
66
- #: app/views/blog/show.rhtml:17
67
- msgid "Back"
68
- msgstr "Πίσω"
69
-
70
- #: app/views/blog/_form.rhtml:16
71
- msgid "Lastupdate"
72
- msgstr "Τελευταία ενημέρωση"
73
-
74
- #: app/views/blog/_form.rhtml:18
75
- msgid "Title: Required."
76
- msgstr "Τίτλος: Απαιτούμενος"
77
-
78
- #: app/views/blog/_form.rhtml:21
79
- msgid "Description: More than 10 characters."
80
- msgstr "Περιγραφή: Περισότεροι από 10 χαρακτήρες"
81
-
82
- #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
83
- #: app/views/layouts/blog.rhtml:14
84
- msgid "GetText Sample Blog on RoR"
85
- msgstr "Υπόδειγμα Blog σε RoR"
86
-
87
- #: app/views/blog/list.rhtml:18
88
- msgid "No articles were found."
89
- msgstr "Δεν βρέθηκαν άρθρα"
90
-
91
- #: app/views/blog/edit.rhtml:12
92
- msgid "Editing article"
93
- msgstr "Διασκευή άρθρου"
94
-
95
- #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
96
- msgid "Edit"
97
- msgstr "Διασκευή"
98
-
99
- #: app/views/blog/edit.rhtml:19
100
- msgid "Show"
101
- msgstr "Εμφάνιση"
102
-
103
- #: app/views/blog/edit.rhtml:20
104
- msgid "Destroy"
105
- msgstr "Διαγραφή"
106
-
107
- #: app/views/blog/edit.rhtml:20
108
- msgid "Are you sure?"
109
- msgstr "Σίγουρα;"
1
+ # GetText Sample Blog on RoR.
2
+ #
3
+ # Copyright (C) 2005,2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # damphyr <damphyr at gmx.net>, 2006.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: blog 1.2.0\n"
12
+ "POT-Creation-Date: 2006-08-22 18:35+0900\n"
13
+ "PO-Revision-Date: 2006-01-06 19:50+0100\n"
14
+ "Last-Translator: damphyr <damphyr at gmx.net>\n"
15
+ "Language-Team: Greek\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
+ #: app/controllers/blog_controller.rb:33
22
+ msgid "Article was successfully created."
23
+ msgstr "Το άρθρο δημιουργήθηκε επιτυχώς"
24
+
25
+ #: app/controllers/blog_controller.rb:47
26
+ msgid "Article was successfully updated."
27
+ msgstr "Το άρθρο ενημερώθηκε επιτυχώς"
28
+
29
+ #: app/helpers/blog_helper.rb:43
30
+ msgid "Ruby Links"
31
+ msgstr "Δεσμοί Ruby"
32
+
33
+ #: app/helpers/blog_helper.rb:51
34
+ msgid "Old articles"
35
+ msgstr "Παλιά άρθρα"
36
+
37
+ # app/models/article.rb:-
38
+ msgid "article"
39
+ msgstr "άρθρο"
40
+
41
+ # app/models/article.rb:-
42
+ msgid "Article|Title"
43
+ msgstr "Τίτλος"
44
+
45
+ # app/models/article.rb:-
46
+ msgid "Article|Description"
47
+ msgstr "Περιγραφή"
48
+
49
+ # app/models/article.rb:-
50
+ msgid "Article|Lastupdate"
51
+ msgstr "Τελευταία ενημέρωση"
52
+
53
+ #: app/views/blog/edit.rhtml:12
54
+ msgid "Editing article"
55
+ msgstr "Διασκευή άρθρου"
56
+
57
+ #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
58
+ msgid "Edit"
59
+ msgstr "Διασκευή"
60
+
61
+ #: app/views/blog/edit.rhtml:19
62
+ msgid "Show"
63
+ msgstr "Εμφάνιση"
64
+
65
+ #: app/views/blog/edit.rhtml:20
66
+ msgid "Destroy"
67
+ msgstr "Διαγραφή"
68
+
69
+ #: app/views/blog/edit.rhtml:20
70
+ msgid "Are you sure?"
71
+ msgstr "Σίγουρα;"
72
+
73
+ #: app/views/blog/edit.rhtml:21 app/views/blog/new.rhtml:20
74
+ #: app/views/blog/show.rhtml:17
75
+ msgid "Back"
76
+ msgstr "Πίσω"
77
+
78
+ #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
79
+ #: app/views/layouts/blog.rhtml:14
80
+ msgid "GetText Sample Blog on RoR"
81
+ msgstr "Υπόδειγμα Blog σε RoR"
82
+
83
+ #: app/views/blog/list.rhtml:15 app/views/blog/new.rhtml:13
84
+ msgid "New article"
85
+ msgstr "Νέο άρθρο"
86
+
87
+ #: app/views/blog/list.rhtml:18
88
+ msgid "No articles were found."
89
+ msgstr "Δεν βρέθηκαν άρθρα"
90
+
91
+ #: app/views/blog/new.rhtml:17
92
+ msgid "Create"
93
+ msgstr "Δημιουργία"
94
+
95
+ #: app/views/blog/_form.rhtml:16
96
+ msgid "Lastupdate"
97
+ msgstr "Τελευταία ενημέρωση"
98
+
99
+ #: app/views/blog/_form.rhtml:18
100
+ msgid "Title: Required."
101
+ msgstr "Τίτλος: Απαιτούμενος"
102
+
103
+ #: app/views/blog/_form.rhtml:21
104
+ msgid "Description: More than 10 characters."
105
+ msgstr "Περιγραφή: Περισότεροι από 10 χαρακτήρες"
@@ -1,111 +1,107 @@
1
- # GetText Sample Blog on RoR.
2
- #
3
- # Copyright (C) 2005 Masao Mutoh
4
- #
5
- # This file is distributed under the same license as the Ruby-GetText-Package.
6
- #
7
- # Notice "Lastupdate".
8
- #
9
- # Masao Mutoh, 2005.
10
- #
11
- msgid ""
12
- msgstr ""
13
- "Project-Id-Version: blog 1.1.0\n"
14
- "POT-Creation-Date: 2006-06-04 22:51+0900\n"
15
- "PO-Revision-Date: 2005-12-23 01:28+0900\n"
16
- "Last-Translator: Masao Mutoh <mutoh@highway.ne.jp>\n"
17
- "Language-Team: English\n"
18
- "MIME-Version: 1.0\n"
19
- "Content-Type: text/plain; charset=UTF-8\n"
20
- "Content-Transfer-Encoding: 8bit\n"
21
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
-
23
- #: app/helpers/blog_helper.rb:43
24
- msgid "Ruby Links"
25
- msgstr ""
26
-
27
- #: app/helpers/blog_helper.rb:51
28
- msgid "Old articles"
29
- msgstr ""
30
-
31
- #: app/models/article.rb:-
32
- msgid "article"
33
- msgstr ""
34
-
35
- #: app/models/article.rb:-
36
- msgid "Article|Id"
37
- msgstr "Date"
38
-
39
- #: app/models/article.rb:-
40
- msgid "Article|Title"
41
- msgstr "Date"
42
-
43
- #: app/models/article.rb:-
44
- msgid "Article|Description"
45
- msgstr ""
46
-
47
- #: app/models/article.rb:-
48
- msgid "Article|Lastupdate"
49
- msgstr "Date"
50
-
51
- #: app/controllers/blog_controller.rb:33
52
- msgid "Article was successfully created."
53
- msgstr ""
54
-
55
- #: app/controllers/blog_controller.rb:47
56
- msgid "Article was successfully updated."
57
- msgstr ""
58
-
59
- #: app/views/blog/new.rhtml:13 app/views/blog/list.rhtml:15
60
- msgid "New article"
61
- msgstr ""
62
-
63
- #: app/views/blog/new.rhtml:17
64
- msgid "Create"
65
- msgstr ""
66
-
67
- #: app/views/blog/new.rhtml:20 app/views/blog/edit.rhtml:21
68
- #: app/views/blog/show.rhtml:17
69
- msgid "Back"
70
- msgstr ""
71
-
72
- #: app/views/blog/_form.rhtml:16
73
- msgid "Lastupdate"
74
- msgstr "Date"
75
-
76
- #: app/views/blog/_form.rhtml:18
77
- msgid "Title: Required."
78
- msgstr ""
79
-
80
- #: app/views/blog/_form.rhtml:21
81
- msgid "Description: More than 10 characters."
82
- msgstr ""
83
-
84
- #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
85
- #: app/views/layouts/blog.rhtml:14
86
- msgid "GetText Sample Blog on RoR"
87
- msgstr ""
88
-
89
- #: app/views/blog/list.rhtml:18
90
- msgid "No articles were found."
91
- msgstr ""
92
-
93
- #: app/views/blog/edit.rhtml:12
94
- msgid "Editing article"
95
- msgstr ""
96
-
97
- #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
98
- msgid "Edit"
99
- msgstr ""
100
-
101
- #: app/views/blog/edit.rhtml:19
102
- msgid "Show"
103
- msgstr ""
104
-
105
- #: app/views/blog/edit.rhtml:20
106
- msgid "Destroy"
107
- msgstr ""
108
-
109
- #: app/views/blog/edit.rhtml:20
110
- msgid "Are you sure?"
111
- msgstr ""
1
+ # GetText Sample Blog on RoR.
2
+ #
3
+ # Copyright (C) 2005,2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Notice "Lastupdate".
8
+ #
9
+ # Masao Mutoh, 2005.
10
+ #
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: blog 1.2.0\n"
14
+ "POT-Creation-Date: 2006-08-22 18:35+0900\n"
15
+ "PO-Revision-Date: 2005-12-23 01:28+0900\n"
16
+ "Last-Translator: Masao Mutoh <mutoh at highway.ne.jp>\n"
17
+ "Language-Team: English\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+
23
+ #: app/controllers/blog_controller.rb:33
24
+ msgid "Article was successfully created."
25
+ msgstr ""
26
+
27
+ #: app/controllers/blog_controller.rb:47
28
+ msgid "Article was successfully updated."
29
+ msgstr ""
30
+
31
+ #: app/helpers/blog_helper.rb:43
32
+ msgid "Ruby Links"
33
+ msgstr ""
34
+
35
+ #: app/helpers/blog_helper.rb:51
36
+ msgid "Old articles"
37
+ msgstr ""
38
+
39
+ # app/models/article.rb:-
40
+ msgid "article"
41
+ msgstr ""
42
+
43
+ # app/models/article.rb:-
44
+ msgid "Article|Title"
45
+ msgstr ""
46
+
47
+ # app/models/article.rb:-
48
+ msgid "Article|Description"
49
+ msgstr ""
50
+
51
+ # app/models/article.rb:-
52
+ msgid "Article|Lastupdate"
53
+ msgstr ""
54
+
55
+ #: app/views/blog/edit.rhtml:12
56
+ msgid "Editing article"
57
+ msgstr ""
58
+
59
+ #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
60
+ msgid "Edit"
61
+ msgstr ""
62
+
63
+ #: app/views/blog/edit.rhtml:19
64
+ msgid "Show"
65
+ msgstr ""
66
+
67
+ #: app/views/blog/edit.rhtml:20
68
+ msgid "Destroy"
69
+ msgstr ""
70
+
71
+ #: app/views/blog/edit.rhtml:20
72
+ msgid "Are you sure?"
73
+ msgstr ""
74
+
75
+ #: app/views/blog/edit.rhtml:21 app/views/blog/new.rhtml:20
76
+ #: app/views/blog/show.rhtml:17
77
+ msgid "Back"
78
+ msgstr ""
79
+
80
+ #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
81
+ #: app/views/layouts/blog.rhtml:14
82
+ msgid "GetText Sample Blog on RoR"
83
+ msgstr ""
84
+
85
+ #: app/views/blog/list.rhtml:15 app/views/blog/new.rhtml:13
86
+ msgid "New article"
87
+ msgstr ""
88
+
89
+ #: app/views/blog/list.rhtml:18
90
+ msgid "No articles were found."
91
+ msgstr ""
92
+
93
+ #: app/views/blog/new.rhtml:17
94
+ msgid "Create"
95
+ msgstr ""
96
+
97
+ #: app/views/blog/_form.rhtml:16
98
+ msgid "Lastupdate"
99
+ msgstr "Date"
100
+
101
+ #: app/views/blog/_form.rhtml:18
102
+ msgid "Title: Required."
103
+ msgstr ""
104
+
105
+ #: app/views/blog/_form.rhtml:21
106
+ msgid "Description: More than 10 characters."
107
+ msgstr ""