gettext 1.4.0-mswin32 → 1.5.0-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +46 -0
- data/NEWS +9 -0
- data/README +28 -25
- 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/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/ext/gettext/Makefile +178 -0
- data/ext/gettext/locale_system-i386-mswin32.def +2 -0
- data/ext/gettext/locale_system.exp +0 -0
- data/ext/gettext/locale_system.lib +0 -0
- data/ext/gettext/locale_system.obj +0 -0
- data/ext/gettext/locale_system.pdb +0 -0
- data/ext/gettext/locale_system.so +0 -0
- data/ext/gettext/mkmf.log +16 -0
- data/ext/gettext/vc70.pdb +0 -0
- data/lib/gettext/mo.rb +31 -10
- data/lib/gettext/parser/activerecord.rb +15 -4
- data/lib/gettext/poparser.rb +2 -2
- data/lib/gettext/rails.rb +14 -5
- data/lib/gettext/string.rb +6 -1
- data/lib/gettext/textdomain.rb +33 -4
- data/lib/gettext/version.rb +1 -1
- data/po/cs/rails.po +16 -16
- data/po/cs/rgettext.po +2 -2
- data/po/de/rails.po +16 -16
- data/po/de/rgettext.po +2 -2
- data/po/el/rails.po +16 -16
- data/po/el/rgettext.po +2 -2
- data/po/es/rails.po +16 -16
- data/po/es/rgettext.po +2 -2
- data/po/fr/rails.po +16 -16
- data/po/fr/rgettext.po +2 -2
- data/po/it/rgettext.po +2 -2
- data/po/ja/rails.po +16 -16
- data/po/ja/rgettext.po +2 -2
- data/po/ko/rails.po +16 -16
- data/po/ko/rgettext.po +2 -2
- data/po/nl/rails.po +16 -16
- data/po/nl/rgettext.po +2 -2
- data/po/pt_BR/rails.po +16 -16
- data/po/pt_BR/rgettext.po +2 -2
- data/po/rails.pot +16 -16
- data/po/rgettext.pot +2 -2
- data/po/ru/rails.po +82 -0
- data/po/ru/rgettext.po +103 -0
- data/po/sv/rgettext.po +2 -2
- data/samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/ru/helloerb1.po +58 -0
- data/samples/cgi/po/ru/helloerb2.po +50 -0
- data/samples/cgi/po/ru/hellolib.po +22 -0
- data/samples/cgi/po/ru/main.po +82 -0
- data/samples/locale/ru/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/po/ru/hello.po +22 -0
- data/samples/po/ru/hello2.po +30 -0
- data/samples/po/ru/hello_noop.po +26 -0
- data/samples/po/ru/hello_plural.po +25 -0
- data/samples/po/ru/helloglade2.po +30 -0
- data/samples/po/ru/hellogtk.po +22 -0
- data/samples/po/ru/hellotk.po +22 -0
- data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ru/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/po/ru/blog.po +108 -0
- data/samples/rails/po/ru/gettext_plugin.po +26 -0
- data/test/gettext_test_locale.rb +1 -1
- data/test/gettext_test_rails.rb +1 -1
- metadata +781 -723
@@ -7,7 +7,7 @@
|
|
7
7
|
You may redistribute it and/or modify it under the same
|
8
8
|
license terms as Ruby.
|
9
9
|
|
10
|
-
$Id: activerecord.rb,v 1.
|
10
|
+
$Id: activerecord.rb,v 1.8 2006/05/06 14:59:08 mutoh Exp $
|
11
11
|
=end
|
12
12
|
|
13
13
|
require 'gettext'
|
@@ -70,15 +70,16 @@ module GetText
|
|
70
70
|
loaded_constants.each do |classname|
|
71
71
|
klass = eval(classname)
|
72
72
|
if klass < ActiveRecord::Base
|
73
|
-
targets
|
73
|
+
add_target(targets, file, ::Inflector.singularize(klass.table_name.gsub(/_/, " ")))
|
74
74
|
tablename = klass.class_name
|
75
75
|
begin
|
76
76
|
klass.columns.each do |column|
|
77
77
|
if @config[:use_classname]
|
78
|
-
|
78
|
+
msgid = tablename + "|" + klass.human_attribute_name(column.name)
|
79
79
|
else
|
80
|
-
|
80
|
+
msgid = klass.human_attribute_name(column.name)
|
81
81
|
end
|
82
|
+
add_target(targets, file, msgid)
|
82
83
|
end
|
83
84
|
rescue
|
84
85
|
$stderr.puts _("No database is available.")
|
@@ -93,6 +94,16 @@ module GetText
|
|
93
94
|
targets
|
94
95
|
end
|
95
96
|
|
97
|
+
def add_target(targets, file, msgid) # :nodoc:
|
98
|
+
key_existed = targets.assoc(msgid)
|
99
|
+
if key_existed
|
100
|
+
targets[targets.index(key_existed)] = key_existed << "#{file}:-"
|
101
|
+
else
|
102
|
+
targets << [msgid, "#{file}:-"]
|
103
|
+
end
|
104
|
+
targets
|
105
|
+
end
|
106
|
+
|
96
107
|
def target?(file) # :nodoc:
|
97
108
|
init(nil) unless @ar_re
|
98
109
|
data = IO.readlines(file)
|
data/lib/gettext/poparser.rb
CHANGED
@@ -20,7 +20,7 @@ module GetText
|
|
20
20
|
|
21
21
|
class PoParser < Racc::Parser
|
22
22
|
|
23
|
-
module_eval <<'..end src/poparser.ry modeval..
|
23
|
+
module_eval <<'..end src/poparser.ry modeval..id0da1ccb1f3', 'src/poparser.ry', 90
|
24
24
|
include GetText
|
25
25
|
GetText.bindtextdomain("rgettext")
|
26
26
|
|
@@ -103,7 +103,7 @@ module_eval <<'..end src/poparser.ry modeval..idca67f10f94', 'src/poparser.ry',
|
|
103
103
|
@comments << comment
|
104
104
|
end
|
105
105
|
|
106
|
-
..end src/poparser.ry modeval..
|
106
|
+
..end src/poparser.ry modeval..id0da1ccb1f3
|
107
107
|
|
108
108
|
##### racc 1.4.5 generates ###
|
109
109
|
|
data/lib/gettext/rails.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
You may redistribute it and/or modify it under the same
|
7
7
|
license terms as Ruby.
|
8
8
|
|
9
|
-
$Id: rails.rb,v 1.
|
9
|
+
$Id: rails.rb,v 1.33 2006/05/06 14:59:08 mutoh Exp $
|
10
10
|
=end
|
11
11
|
|
12
12
|
require 'gettext/cgi'
|
@@ -360,9 +360,9 @@ module ActionView #:nodoc:
|
|
360
360
|
|
361
361
|
options = options.symbolize_keys
|
362
362
|
|
363
|
-
|
363
|
+
if object && ! object.errors.empty?
|
364
364
|
count = object.errors.count
|
365
|
-
record = ActiveRecord::Base.human_attribute_table_name_for_error(object_name)
|
365
|
+
record = ActiveRecord::Base.human_attribute_table_name_for_error(object_name.to_s)
|
366
366
|
render_error_message(object, klass, record, count, options)
|
367
367
|
end
|
368
368
|
end
|
@@ -409,6 +409,15 @@ module ActionMailer #:nodoc:
|
|
409
409
|
end
|
410
410
|
end
|
411
411
|
|
412
|
-
|
413
|
-
GetText
|
412
|
+
begin
|
413
|
+
Rails::Info.property("GetText version") do
|
414
|
+
GetText::VERSION
|
415
|
+
end
|
416
|
+
rescue Exception
|
417
|
+
$stderr.puts "GetText: #{GetText::VERSION} Rails::Info is not found." if $DEBUG
|
418
|
+
end
|
419
|
+
|
420
|
+
|
421
|
+
if ::RAILS_ENV == "development"
|
422
|
+
GetText::TextDomain.check_mo = true
|
414
423
|
end
|
data/lib/gettext/string.rb
CHANGED
data/lib/gettext/textdomain.rb
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
You may redistribute it and/or modify it under the same
|
11
11
|
license terms as Ruby.
|
12
12
|
|
13
|
-
$Id: textdomain.rb,v 1.
|
13
|
+
$Id: textdomain.rb,v 1.16 2006/04/29 17:17:15 mutoh Exp $
|
14
14
|
=end
|
15
15
|
|
16
16
|
require 'gettext/string'
|
@@ -29,6 +29,22 @@ module GetText
|
|
29
29
|
attr_reader :current_locale
|
30
30
|
attr_reader :current_mo
|
31
31
|
|
32
|
+
@@check_mo = false
|
33
|
+
# Check mo-file is modified or not, and if mo-file is modified,
|
34
|
+
# reload mo-file again. This is effective in debug mode.
|
35
|
+
# Default is false. If $DEBUG is true, mo-file is checked even if
|
36
|
+
# this value is false.
|
37
|
+
# * Returns: true if "check mo" mode.
|
38
|
+
def self.check_mo?
|
39
|
+
@@check_mo
|
40
|
+
end
|
41
|
+
|
42
|
+
# Sets to check mo-file or not. See GetText::TextDoman.check_mo? for more details.
|
43
|
+
# * val: true if "check mo" mode.
|
44
|
+
# * Returns: val
|
45
|
+
def self.check_mo=(val)
|
46
|
+
@@check_mo = val
|
47
|
+
end
|
32
48
|
# The default locale paths.
|
33
49
|
DEFAULT_LOCALE_PATHS = [
|
34
50
|
"#{Config::CONFIG['datadir']}/locale/%{locale}/LC_MESSAGES/%{name}.mo",
|
@@ -145,8 +161,15 @@ module GetText
|
|
145
161
|
unless reload
|
146
162
|
@current_mo = @mofiles[@current_locale]
|
147
163
|
if @current_mo
|
148
|
-
|
149
|
-
|
164
|
+
if @current_mo == :empty
|
165
|
+
@current_mo = nil
|
166
|
+
return nil unless (@@check_mo or $DEBUG)
|
167
|
+
elsif (@@check_mo or $DEBUG)
|
168
|
+
@current_mo.update!
|
169
|
+
return @current_mo
|
170
|
+
else
|
171
|
+
return @current_mo
|
172
|
+
end
|
150
173
|
end
|
151
174
|
end
|
152
175
|
locales = [@current_locale.orig_str, @current_locale.to_posix, @current_locale.language]
|
@@ -163,7 +186,13 @@ module GetText
|
|
163
186
|
}
|
164
187
|
end
|
165
188
|
unless @current_mo
|
166
|
-
|
189
|
+
@mofiles[@current_locale] = :empty
|
190
|
+
if $DEBUG
|
191
|
+
$stderr.puts "MO file is not found in"
|
192
|
+
@search_files.each do |v|
|
193
|
+
$stderr.puts " #{v}"
|
194
|
+
end
|
195
|
+
end
|
167
196
|
end
|
168
197
|
@current_mo
|
169
198
|
end
|
data/lib/gettext/version.rb
CHANGED
data/po/cs/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-
|
11
|
+
"Project-Id-Version: ruby-gettext 1.4.0\n"
|
12
|
+
"POT-Creation-Date: 2006-04-17 23:03+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-12-17 21:43+0100\n"
|
14
14
|
"Last-Translator: Karel Miarka <kajism@yahoo.com>\n"
|
15
15
|
"Language-Team: Czech\n"
|
@@ -20,62 +20,62 @@ msgstr ""
|
|
20
20
|
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
21
21
|
"X-Poedit-Language: Czech\n"
|
22
22
|
|
23
|
-
#: lib/gettext/rails.rb:
|
23
|
+
#: lib/gettext/rails.rb:263
|
24
24
|
msgid "%{fn} is not included in the list"
|
25
25
|
msgstr "%{fn} není obsaženo v seznamu možností"
|
26
26
|
|
27
|
-
#: lib/gettext/rails.rb:
|
27
|
+
#: lib/gettext/rails.rb:264
|
28
28
|
msgid "%{fn} is reserved"
|
29
29
|
msgstr "%{fn} je rezervováno a nemůže být zvoleno"
|
30
30
|
|
31
|
-
#: lib/gettext/rails.rb:
|
31
|
+
#: lib/gettext/rails.rb:265
|
32
32
|
msgid "%{fn} is invalid"
|
33
33
|
msgstr "%{fn} je chybné"
|
34
34
|
|
35
|
-
#: lib/gettext/rails.rb:
|
35
|
+
#: lib/gettext/rails.rb:266
|
36
36
|
msgid "%{fn} doesn't match confirmation"
|
37
37
|
msgstr "%{fn} není shodné s potvrzením"
|
38
38
|
|
39
|
-
#: lib/gettext/rails.rb:
|
39
|
+
#: lib/gettext/rails.rb:267
|
40
40
|
msgid "%{fn} must be accepted"
|
41
41
|
msgstr "%{fn} musí být zaškrtnuto"
|
42
42
|
|
43
|
-
#: lib/gettext/rails.rb:
|
43
|
+
#: lib/gettext/rails.rb:268
|
44
44
|
msgid "%{fn} can't be empty"
|
45
45
|
msgstr "%{fn} musí být vyplněno"
|
46
46
|
|
47
|
-
#: lib/gettext/rails.rb:
|
47
|
+
#: lib/gettext/rails.rb:269
|
48
48
|
msgid "%{fn} can't be blank"
|
49
49
|
msgstr "%{fn} musí být vyplněno"
|
50
50
|
|
51
|
-
#: lib/gettext/rails.rb:
|
51
|
+
#: lib/gettext/rails.rb:270
|
52
52
|
msgid "%{fn} is too long (max is %d characters)"
|
53
53
|
msgstr "%{fn} je příliš dlouhé (maximum je %d znaků)"
|
54
54
|
|
55
|
-
#: lib/gettext/rails.rb:
|
55
|
+
#: lib/gettext/rails.rb:271
|
56
56
|
msgid "%{fn} is too short (min is %d characters)"
|
57
57
|
msgstr "%{fn} je příliš krátké (minimum je %d znaků)"
|
58
58
|
|
59
|
-
#: lib/gettext/rails.rb:
|
59
|
+
#: lib/gettext/rails.rb:272
|
60
60
|
msgid "%{fn} is the wrong length (should be %d characters)"
|
61
61
|
msgstr "%{fn} má nesprávnou délku (musí mít %d znaků)"
|
62
62
|
|
63
|
-
#: lib/gettext/rails.rb:
|
63
|
+
#: lib/gettext/rails.rb:273
|
64
64
|
msgid "%{fn} has already been taken"
|
65
65
|
msgstr "%{fn} je již použito"
|
66
66
|
|
67
|
-
#: lib/gettext/rails.rb:
|
67
|
+
#: lib/gettext/rails.rb:274
|
68
68
|
msgid "%{fn} is not a number"
|
69
69
|
msgstr "%{fn} není správné číslo"
|
70
70
|
|
71
|
-
#: lib/gettext/rails.rb:
|
71
|
+
#: lib/gettext/rails.rb:337
|
72
72
|
msgid "%{num} error prohibited this %{record} from being saved"
|
73
73
|
msgid_plural "%{num} errors prohibited this %{record} from being saved"
|
74
74
|
msgstr[0] "%{num} chyba znemožnila uložení záznamu %{record} "
|
75
75
|
msgstr[1] "%{num} chyby znemožnily uložení záznamu %{record} "
|
76
76
|
msgstr[2] "%{num} chyb znemožnilo uložení záznamu %{record} "
|
77
77
|
|
78
|
-
#: lib/gettext/rails.rb:
|
78
|
+
#: lib/gettext/rails.rb:339
|
79
79
|
msgid "There was a problem with the following field:"
|
80
80
|
msgid_plural "There were problems with the following fields:"
|
81
81
|
msgstr[0] "Problémy jsou s následujícím polem:"
|
data/po/cs/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-
|
11
|
+
"Project-Id-Version: ruby-gettext 1.4.0\n"
|
12
|
+
"POT-Creation-Date: 2006-04-17 23:02+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-12-17 21:55+0100\n"
|
14
14
|
"Last-Translator: Karel Miarka <kajism@yahoo.com>\n"
|
15
15
|
"Language-Team: Czech\n"
|
data/po/de/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-
|
11
|
+
"Project-Id-Version: ruby-gettext 1.4.0\n"
|
12
|
+
"POT-Creation-Date: 2006-04-17 23:03+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-12-27 17:00W. Europe Standard Time\n"
|
14
14
|
"Last-Translator: Sasa Ebach <se@digitale-wertschoepfung.de>\n"
|
15
15
|
"Language-Team: German\n"
|
@@ -18,55 +18,55 @@ 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:263
|
22
22
|
msgid "%{fn} is not included in the list"
|
23
23
|
msgstr "%{fn} kommt nicht in der Liste vor"
|
24
24
|
|
25
|
-
#: lib/gettext/rails.rb:
|
25
|
+
#: lib/gettext/rails.rb:264
|
26
26
|
msgid "%{fn} is reserved"
|
27
27
|
msgstr "%{fn} ist reserviert"
|
28
28
|
|
29
|
-
#: lib/gettext/rails.rb:
|
29
|
+
#: lib/gettext/rails.rb:265
|
30
30
|
msgid "%{fn} is invalid"
|
31
31
|
msgstr "%{fn} ist ungültig"
|
32
32
|
|
33
|
-
#: lib/gettext/rails.rb:
|
33
|
+
#: lib/gettext/rails.rb:266
|
34
34
|
msgid "%{fn} doesn't match confirmation"
|
35
35
|
msgstr "%{fn} stimmt nicht mit der Bestätigung überein"
|
36
36
|
|
37
|
-
#: lib/gettext/rails.rb:
|
37
|
+
#: lib/gettext/rails.rb:267
|
38
38
|
msgid "%{fn} must be accepted"
|
39
39
|
msgstr "%{fn} muss akzeptiert werden"
|
40
40
|
|
41
|
-
#: lib/gettext/rails.rb:
|
41
|
+
#: lib/gettext/rails.rb:268
|
42
42
|
msgid "%{fn} can't be empty"
|
43
43
|
msgstr "%{fn} kann nicht leer sein"
|
44
44
|
|
45
|
-
#: lib/gettext/rails.rb:
|
45
|
+
#: lib/gettext/rails.rb:269
|
46
46
|
msgid "%{fn} can't be blank"
|
47
47
|
msgstr "%{fn} kann nicht leer sein"
|
48
48
|
|
49
|
-
#: lib/gettext/rails.rb:
|
49
|
+
#: lib/gettext/rails.rb:270
|
50
50
|
msgid "%{fn} is too long (max is %d characters)"
|
51
51
|
msgstr "%{fn} ist zu lang (max. %d Zeichen)"
|
52
52
|
|
53
|
-
#: lib/gettext/rails.rb:
|
53
|
+
#: lib/gettext/rails.rb:271
|
54
54
|
msgid "%{fn} is too short (min is %d characters)"
|
55
55
|
msgstr "%{fn} ist zu kurz (min. %d Zeichen)"
|
56
56
|
|
57
|
-
#: lib/gettext/rails.rb:
|
57
|
+
#: lib/gettext/rails.rb:272
|
58
58
|
msgid "%{fn} is the wrong length (should be %d characters)"
|
59
59
|
msgstr "%{fn} hat eine falsche Länge (sollte %d Zeichen lang sein)"
|
60
60
|
|
61
|
-
#: lib/gettext/rails.rb:
|
61
|
+
#: lib/gettext/rails.rb:273
|
62
62
|
msgid "%{fn} has already been taken"
|
63
63
|
msgstr "%{fn} existiert bereits"
|
64
64
|
|
65
|
-
#: lib/gettext/rails.rb:
|
65
|
+
#: lib/gettext/rails.rb:274
|
66
66
|
msgid "%{fn} is not a number"
|
67
67
|
msgstr "%{fn} ist keine Ziffer"
|
68
68
|
|
69
|
-
#: lib/gettext/rails.rb:
|
69
|
+
#: lib/gettext/rails.rb:337
|
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] ""
|
@@ -75,7 +75,7 @@ msgstr[1] ""
|
|
75
75
|
"%{num} Fehler haben verhindert, dass dieser %{record} gespeichert werden "
|
76
76
|
"konnte"
|
77
77
|
|
78
|
-
#: lib/gettext/rails.rb:
|
78
|
+
#: lib/gettext/rails.rb:339
|
79
79
|
msgid "There was a problem with the following field:"
|
80
80
|
msgid_plural "There were problems with the following fields:"
|
81
81
|
msgstr[0] "Folgendes Feld hat Probleme verursacht:"
|
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.4.0\n"
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
15
|
-
"POT-Creation-Date: 2006-
|
15
|
+
"POT-Creation-Date: 2006-04-17 23:02+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"
|
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-
|
11
|
+
"Project-Id-Version: ruby-gettext 1.4.0\n"
|
12
|
+
"POT-Creation-Date: 2006-04-17 23:03+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:263
|
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:264
|
26
26
|
msgid "%{fn} is reserved"
|
27
27
|
msgstr "το %{fn} είναι κατειλημένο"
|
28
28
|
|
29
|
-
#: lib/gettext/rails.rb:
|
29
|
+
#: lib/gettext/rails.rb:265
|
30
30
|
msgid "%{fn} is invalid"
|
31
31
|
msgstr "το %{fn} είναι άκυρο"
|
32
32
|
|
33
|
-
#: lib/gettext/rails.rb:
|
33
|
+
#: lib/gettext/rails.rb:266
|
34
34
|
msgid "%{fn} doesn't match confirmation"
|
35
35
|
msgstr "το %{fn} δεν ταιριάζει με την επιβεβαίωση του"
|
36
36
|
|
37
|
-
#: lib/gettext/rails.rb:
|
37
|
+
#: lib/gettext/rails.rb:267
|
38
38
|
msgid "%{fn} must be accepted"
|
39
39
|
msgstr "το %{fn} πρέπει να γίνει δεκτό"
|
40
40
|
|
41
|
-
#: lib/gettext/rails.rb:
|
41
|
+
#: lib/gettext/rails.rb:268
|
42
42
|
msgid "%{fn} can't be empty"
|
43
43
|
msgstr "το %{fn} δεν γίνεται να είναι κενό"
|
44
44
|
|
45
|
-
#: lib/gettext/rails.rb:
|
45
|
+
#: lib/gettext/rails.rb:269
|
46
46
|
msgid "%{fn} can't be blank"
|
47
47
|
msgstr "το %{fn} δεν γίνεται να είναι κενό"
|
48
48
|
|
49
|
-
#: lib/gettext/rails.rb:
|
49
|
+
#: lib/gettext/rails.rb:270
|
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:271
|
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:272
|
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:273
|
62
62
|
msgid "%{fn} has already been taken"
|
63
63
|
msgstr "το %{fn} είναι ήδη κατειλημένο"
|
64
64
|
|
65
|
-
#: lib/gettext/rails.rb:
|
65
|
+
#: lib/gettext/rails.rb:274
|
66
66
|
msgid "%{fn} is not a number"
|
67
67
|
msgstr "το %{fn} δεν είναι αριθμός"
|
68
68
|
|
69
|
-
#: lib/gettext/rails.rb:
|
69
|
+
#: lib/gettext/rails.rb:337
|
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:339
|
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] "Υπάρχουν προβλήματα στο παρακάτω πεδίο:"
|