mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-18 07:52:23 +01:00
(bug) wrong currency on invoices files
This commit is contained in:
parent
2705b9f6bd
commit
adaea48349
@ -5,6 +5,8 @@
|
||||
- Improved calendars loading time
|
||||
- Refactored and documented the availability-slot-reservation data model
|
||||
- Display bookers names to connected users now apply to all resources
|
||||
- Updated rails locales files
|
||||
- Fix a bug: wrong currency on invoices files
|
||||
- Fix a bug: unable to reserve if user's subscription plan is disabled
|
||||
- Fix a bug: for admins and managers, the current password is not requested before changing their own password
|
||||
- Fix a bug: missing translations
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
require 'sidekiq'
|
||||
require 'sidekiq-scheduler'
|
||||
require 'sidekiq/middleware/i18n'
|
||||
require 'sidekiq/server_locale'
|
||||
|
||||
redis_host = ENV['REDIS_HOST'] || 'localhost'
|
||||
redis_url = "redis://#{redis_host}:6379"
|
||||
@ -36,6 +38,9 @@ Sidekiq.configure_client do |config|
|
||||
config.client_middleware do |chain|
|
||||
chain.add SidekiqUniqueJobs::Middleware::Client
|
||||
end
|
||||
config.server_middleware do |chain|
|
||||
chain.add FabManager::Middleware::ServerLocale
|
||||
end
|
||||
end
|
||||
|
||||
# Quieting logging in the test environment
|
||||
|
@ -1,57 +1,65 @@
|
||||
de-AT:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
date:
|
||||
abbr_day_names:
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jän
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
day_names:
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
formats:
|
||||
default: "%d.%m.%Y"
|
||||
long: "%e. %B %Y"
|
||||
short: "%e. %b"
|
||||
month_names:
|
||||
-
|
||||
- Jänner
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
-
|
||||
- Januar
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +93,9 @@ de-AT:
|
||||
x_months:
|
||||
one: ein Monat
|
||||
other: "%{count} Monate"
|
||||
x_years:
|
||||
one: ein Jahr
|
||||
other: "%{count} Jahr"
|
||||
x_seconds:
|
||||
one: eine Sekunde
|
||||
other: "%{count} Sekunden"
|
||||
@ -112,14 +123,11 @@ de-AT:
|
||||
invalid: ist nicht gültig
|
||||
less_than: muss kleiner als %{count} sein
|
||||
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
|
||||
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
not_a_number: ist keine Zahl
|
||||
not_an_integer: muss ganzzahlig sein
|
||||
odd: muss ungerade sein
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
required: muss ausgefüllt werden
|
||||
taken: ist bereits vergeben
|
||||
too_long:
|
||||
one: ist zu lang (mehr als 1 Zeichen)
|
||||
@ -131,6 +139,7 @@ de-AT:
|
||||
one: hat die falsche Länge (muss genau 1 Zeichen haben)
|
||||
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
|
||||
other_than: darf nicht gleich %{count} sein
|
||||
wrong_content_type: "Inhaltstyp ist nicht zulässig"
|
||||
template:
|
||||
body: 'Bitte überprüfen Sie die folgenden Felder:'
|
||||
header:
|
||||
@ -166,12 +175,16 @@ de-AT:
|
||||
billion:
|
||||
one: Milliarde
|
||||
other: Milliarden
|
||||
million: Millionen
|
||||
million:
|
||||
one: Million
|
||||
other: Millionen
|
||||
quadrillion:
|
||||
one: Billiarde
|
||||
other: Billiarden
|
||||
thousand: Tausend
|
||||
trillion: Billionen
|
||||
trillion:
|
||||
one: Billion
|
||||
other: Billionen
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -188,6 +201,8 @@ de-AT:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -206,4 +221,4 @@ de-AT:
|
||||
default: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
long: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
short: "%d. %B, %H:%M Uhr"
|
||||
pm: nachmittags
|
||||
pm: nachmittags
|
@ -1,57 +1,65 @@
|
||||
de-CH:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
date:
|
||||
abbr_day_names:
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
day_names:
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
formats:
|
||||
default: "%d.%m.%Y"
|
||||
long: "%e. %B %Y"
|
||||
short: "%e. %b"
|
||||
month_names:
|
||||
-
|
||||
- Januar
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
-
|
||||
- Januar
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +93,9 @@ de-CH:
|
||||
x_months:
|
||||
one: ein Monat
|
||||
other: "%{count} Monate"
|
||||
x_years:
|
||||
one: ein Jahr
|
||||
other: "%{count} Jahr"
|
||||
x_seconds:
|
||||
one: eine Sekunde
|
||||
other: "%{count} Sekunden"
|
||||
@ -112,14 +123,11 @@ de-CH:
|
||||
invalid: ist nicht gültig
|
||||
less_than: muss kleiner als %{count} sein
|
||||
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
|
||||
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
not_a_number: ist keine Zahl
|
||||
not_an_integer: muss ganzzahlig sein
|
||||
odd: muss ungerade sein
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
required: muss ausgefüllt werden
|
||||
taken: ist bereits vergeben
|
||||
too_long:
|
||||
one: ist zu lang (mehr als 1 Zeichen)
|
||||
@ -131,6 +139,7 @@ de-CH:
|
||||
one: hat die falsche Länge (muss genau 1 Zeichen haben)
|
||||
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
|
||||
other_than: darf nicht gleich %{count} sein
|
||||
wrong_content_type: "Inhaltstyp ist nicht zulässig"
|
||||
template:
|
||||
body: 'Bitte überprüfen Sie die folgenden Felder:'
|
||||
header:
|
||||
@ -192,6 +201,8 @@ de-CH:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -210,4 +221,4 @@ de-CH:
|
||||
default: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
long: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
short: "%d. %B, %H:%M Uhr"
|
||||
pm: nachmittags
|
||||
pm: nachmittags
|
@ -1,57 +1,65 @@
|
||||
de-DE:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
date:
|
||||
abbr_day_names:
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
day_names:
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
formats:
|
||||
default: "%d.%m.%Y"
|
||||
long: "%e. %B %Y"
|
||||
short: "%e. %b"
|
||||
month_names:
|
||||
-
|
||||
- Januar
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
-
|
||||
- Januar
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +93,9 @@ de-DE:
|
||||
x_months:
|
||||
one: ein Monat
|
||||
other: "%{count} Monate"
|
||||
x_years:
|
||||
one: ein Jahr
|
||||
other: "%{count} Jahr"
|
||||
x_seconds:
|
||||
one: eine Sekunde
|
||||
other: "%{count} Sekunden"
|
||||
@ -112,14 +123,11 @@ de-DE:
|
||||
invalid: ist nicht gültig
|
||||
less_than: muss kleiner als %{count} sein
|
||||
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
|
||||
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
not_a_number: ist keine Zahl
|
||||
not_an_integer: muss ganzzahlig sein
|
||||
odd: muss ungerade sein
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
required: muss ausgefüllt werden
|
||||
taken: ist bereits vergeben
|
||||
too_long:
|
||||
one: ist zu lang (mehr als 1 Zeichen)
|
||||
@ -131,6 +139,7 @@ de-DE:
|
||||
one: hat die falsche Länge (muss genau 1 Zeichen haben)
|
||||
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
|
||||
other_than: darf nicht gleich %{count} sein
|
||||
wrong_content_type: "Inhaltstyp ist nicht zulässig"
|
||||
template:
|
||||
body: 'Bitte überprüfen Sie die folgenden Felder:'
|
||||
header:
|
||||
@ -166,12 +175,16 @@ de-DE:
|
||||
billion:
|
||||
one: Milliarde
|
||||
other: Milliarden
|
||||
million: Millionen
|
||||
million:
|
||||
one: Million
|
||||
other: Millionen
|
||||
quadrillion:
|
||||
one: Billiarde
|
||||
other: Billiarden
|
||||
thousand: Tausend
|
||||
trillion: Billionen
|
||||
trillion:
|
||||
one: Billion
|
||||
other: Billionen
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -188,6 +201,8 @@ de-DE:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -206,4 +221,4 @@ de-DE:
|
||||
default: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
long: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
short: "%d. %B, %H:%M Uhr"
|
||||
pm: nachmittags
|
||||
pm: nachmittags
|
@ -1,57 +1,65 @@
|
||||
de:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
date:
|
||||
abbr_day_names:
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
- So
|
||||
- Mo
|
||||
- Di
|
||||
- Mi
|
||||
- Do
|
||||
- Fr
|
||||
- Sa
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mär
|
||||
- Apr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Okt
|
||||
- Nov
|
||||
- Dez
|
||||
day_names:
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
- Sonntag
|
||||
- Montag
|
||||
- Dienstag
|
||||
- Mittwoch
|
||||
- Donnerstag
|
||||
- Freitag
|
||||
- Samstag
|
||||
formats:
|
||||
default: "%d.%m.%Y"
|
||||
long: "%e. %B %Y"
|
||||
short: "%e. %b"
|
||||
month_names:
|
||||
-
|
||||
- Januar
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
-
|
||||
- Januar
|
||||
- Februar
|
||||
- März
|
||||
- April
|
||||
- Mai
|
||||
- Juni
|
||||
- Juli
|
||||
- August
|
||||
- September
|
||||
- Oktober
|
||||
- November
|
||||
- Dezember
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +93,9 @@ de:
|
||||
x_months:
|
||||
one: ein Monat
|
||||
other: "%{count} Monate"
|
||||
x_years:
|
||||
one: ein Jahr
|
||||
other: "%{count} Jahr"
|
||||
x_seconds:
|
||||
one: eine Sekunde
|
||||
other: "%{count} Sekunden"
|
||||
@ -112,14 +123,11 @@ de:
|
||||
invalid: ist nicht gültig
|
||||
less_than: muss kleiner als %{count} sein
|
||||
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
|
||||
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
not_a_number: ist keine Zahl
|
||||
not_an_integer: muss ganzzahlig sein
|
||||
odd: muss ungerade sein
|
||||
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
|
||||
existiert.
|
||||
many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
|
||||
required: muss ausgefüllt werden
|
||||
taken: ist bereits vergeben
|
||||
too_long:
|
||||
one: ist zu lang (mehr als 1 Zeichen)
|
||||
@ -131,6 +139,7 @@ de:
|
||||
one: hat die falsche Länge (muss genau 1 Zeichen haben)
|
||||
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
|
||||
other_than: darf nicht gleich %{count} sein
|
||||
wrong_content_type: "Inhaltstyp ist nicht zulässig"
|
||||
template:
|
||||
body: 'Bitte überprüfen Sie die folgenden Felder:'
|
||||
header:
|
||||
@ -166,12 +175,16 @@ de:
|
||||
billion:
|
||||
one: Milliarde
|
||||
other: Milliarden
|
||||
million: Millionen
|
||||
million:
|
||||
one: Million
|
||||
other: Millionen
|
||||
quadrillion:
|
||||
one: Billiarde
|
||||
other: Billiarden
|
||||
thousand: Tausend
|
||||
trillion: Billionen
|
||||
trillion:
|
||||
one: Billion
|
||||
other: Billionen
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -188,6 +201,8 @@ de:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -206,5 +221,4 @@ de:
|
||||
default: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
long: "%A, %d. %B %Y, %H:%M Uhr"
|
||||
short: "%d. %B, %H:%M Uhr"
|
||||
pm: nachmittags
|
||||
|
||||
pm: nachmittags
|
@ -1,57 +1,64 @@
|
||||
en-AU:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%d-%m-%Y"
|
||||
long: "%d %B, %Y"
|
||||
short: "%d %b"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-AU:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -100,6 +110,7 @@ en-AU:
|
||||
messages:
|
||||
accepted: must be accepted
|
||||
blank: can't be blank
|
||||
present: must be blank
|
||||
confirmation: doesn't match %{attribute}
|
||||
empty: can't be empty
|
||||
equal_to: must be equal to %{count}
|
||||
@ -111,10 +122,11 @@ en-AU:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -125,6 +137,8 @@ en-AU:
|
||||
wrong_length:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -178,9 +192,12 @@ en-AU:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -195,4 +212,4 @@ en-AU:
|
||||
default: "%a, %d %b %Y %H:%M:%S %z"
|
||||
long: "%d %B, %Y %H:%M"
|
||||
short: "%d %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en-CA:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%d-%m-%Y"
|
||||
long: "%B %d, %Y"
|
||||
short: "%d %b"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-CA:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -100,6 +110,7 @@ en-CA:
|
||||
messages:
|
||||
accepted: must be accepted
|
||||
blank: can't be blank
|
||||
present: must be blank
|
||||
confirmation: doesn't match %{attribute}
|
||||
empty: can't be empty
|
||||
equal_to: must be equal to %{count}
|
||||
@ -111,10 +122,11 @@ en-CA:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -125,6 +137,8 @@ en-CA:
|
||||
wrong_length:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -178,9 +192,12 @@ en-CA:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -195,4 +212,4 @@ en-CA:
|
||||
default: "%a, %d %b %Y %I:%M:%S %p %Z"
|
||||
long: "%B %d, %Y %I:%M %p"
|
||||
short: "%d %b %I:%M %p"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en-GB:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%d-%m-%Y"
|
||||
long: "%d %B, %Y"
|
||||
short: "%d %b"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-GB:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -100,6 +110,7 @@ en-GB:
|
||||
messages:
|
||||
accepted: must be accepted
|
||||
blank: can't be blank
|
||||
present: must be blank
|
||||
confirmation: doesn't match %{attribute}
|
||||
empty: can't be empty
|
||||
equal_to: must be equal to %{count}
|
||||
@ -111,10 +122,11 @@ en-GB:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -125,6 +137,8 @@ en-GB:
|
||||
wrong_length:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -178,9 +192,12 @@ en-GB:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -195,4 +212,4 @@ en-GB:
|
||||
default: "%a, %d %b %Y %H:%M:%S %z"
|
||||
long: "%d %B, %Y %H:%M"
|
||||
short: "%d %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en-IE:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%d-%m-%Y"
|
||||
long: "%d %B, %Y"
|
||||
short: "%d %b"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-IE:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -100,6 +110,7 @@ en-IE:
|
||||
messages:
|
||||
accepted: must be accepted
|
||||
blank: can't be blank
|
||||
present: must be blank
|
||||
confirmation: doesn't match %{attribute}
|
||||
empty: can't be empty
|
||||
equal_to: must be equal to %{count}
|
||||
@ -111,10 +122,11 @@ en-IE:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -125,6 +137,8 @@ en-IE:
|
||||
wrong_length:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -178,9 +192,12 @@ en-IE:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -195,4 +212,4 @@ en-IE:
|
||||
default: "%a, %d %b %Y %H:%M:%S %z"
|
||||
long: "%d %B, %Y %H:%M"
|
||||
short: "%d %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en-IN:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%d-%m-%Y"
|
||||
long: "%B %d, %Y"
|
||||
short: "%b %d"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-IN:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -100,6 +110,7 @@ en-IN:
|
||||
messages:
|
||||
accepted: must be accepted
|
||||
blank: can't be blank
|
||||
present: must be blank
|
||||
confirmation: doesn't match %{attribute}
|
||||
empty: can't be empty
|
||||
equal_to: must be equal to %{count}
|
||||
@ -111,10 +122,11 @@ en-IN:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -125,6 +137,8 @@ en-IN:
|
||||
wrong_length:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -178,9 +192,12 @@ en-IN:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -195,4 +212,4 @@ en-IN:
|
||||
default: "%a, %d %b %Y %H:%M:%S %z"
|
||||
long: "%B %d, %Y %H:%M"
|
||||
short: "%d %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en-NZ:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%d-%m-%Y"
|
||||
long: "%d %B, %Y"
|
||||
short: "%d %b"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-NZ:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -100,6 +110,7 @@ en-NZ:
|
||||
messages:
|
||||
accepted: must be accepted
|
||||
blank: can't be blank
|
||||
present: must be blank
|
||||
confirmation: doesn't match %{attribute}
|
||||
empty: can't be empty
|
||||
equal_to: must be equal to %{count}
|
||||
@ -111,10 +122,11 @@ en-NZ:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -125,6 +137,8 @@ en-NZ:
|
||||
wrong_length:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -178,9 +192,12 @@ en-NZ:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -195,4 +212,4 @@ en-NZ:
|
||||
default: "%a, %d %b %Y %H:%M:%S %z"
|
||||
long: "%d %B, %Y %H:%M"
|
||||
short: "%d %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en-US:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%m-%d-%Y"
|
||||
long: "%B %d, %Y"
|
||||
short: "%b %d"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-US:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -112,13 +122,11 @@ en-US:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Cannot delete record because a dependent %{record} exists
|
||||
many: Cannot delete record because dependent %{record} exist
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -130,6 +138,7 @@ en-US:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -183,6 +192,8 @@ en-US:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -201,4 +212,4 @@ en-US:
|
||||
default: "%a, %d %b %Y %I:%M:%S %p %Z"
|
||||
long: "%B %d, %Y %I:%M %p"
|
||||
short: "%d %b %I:%M %p"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en-ZA:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%Y-%m-%d"
|
||||
long: "%B %d, %Y"
|
||||
short: "%b %d"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en-ZA:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -112,13 +122,11 @@ en-ZA:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Cannot delete record because a dependent %{record} exists
|
||||
many: Cannot delete record because dependent %{record} exist
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -130,6 +138,7 @@ en-ZA:
|
||||
one: is the wrong length (should be 1 character)
|
||||
other: is the wrong length (should be %{count} characters)
|
||||
other_than: must be other than %{count}
|
||||
wrong_content_type: "content type is not allowed"
|
||||
template:
|
||||
body: 'There were problems with the following fields:'
|
||||
header:
|
||||
@ -183,6 +192,8 @@ en-ZA:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -201,4 +212,4 @@ en-ZA:
|
||||
default: "%a, %d %b %Y %H:%M:%S %z"
|
||||
long: "%B %d, %Y %H:%M"
|
||||
short: "%d %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
en:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%Y-%m-%d"
|
||||
long: "%B %d, %Y"
|
||||
short: "%b %d"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ en:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -112,13 +122,11 @@ en:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Cannot delete record because a dependent %{record} exists
|
||||
many: Cannot delete record because dependent %{record} exist
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -184,6 +192,8 @@ en:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
|
@ -1,57 +1,64 @@
|
||||
es-419:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-419:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -100,6 +110,7 @@ es-419:
|
||||
messages:
|
||||
accepted: debe ser aceptado
|
||||
blank: no puede estar en blanco
|
||||
present: debe estar en blanco
|
||||
confirmation: no coincide
|
||||
empty: no puede estar vacío
|
||||
equal_to: debe ser igual a %{count}
|
||||
@ -111,10 +122,11 @@ es-419:
|
||||
invalid: es inválido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número non
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
required: debe existir
|
||||
taken: ya ha sido tomado
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -125,6 +137,8 @@ es-419:
|
||||
wrong_length:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -158,10 +172,14 @@ es-419:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -178,9 +196,12 @@ es-419:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -195,4 +216,4 @@ es-419:
|
||||
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
|
||||
long: "%A, %d de %B de %Y a las %I:%M %p"
|
||||
short: "%d de %b a las %H:%M hrs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-AR:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-AR:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-AR:
|
||||
invalid: es inválido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número non
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya ha sido tomado
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-AR:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-AR:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -183,9 +196,12 @@ es-AR:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -200,4 +216,4 @@ es-AR:
|
||||
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
|
||||
long: "%A, %d de %B de %Y a las %I:%M %p"
|
||||
short: "%d de %b a las %H:%M hrs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-CL:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-CL:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,18 +122,23 @@ es-CL:
|
||||
invalid: no es válido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor que o igual a %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser impar
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya está en uso
|
||||
too_long: es demasiado largo (%{count} caracteres máximo)
|
||||
too_short: es demasiado corto (%{count} caracteres mínimo)
|
||||
wrong_length: no tiene la longitud correcta (%{count} caracteres exactos)
|
||||
too_long:
|
||||
one: "es demasiado largo (1 carácter máximo)"
|
||||
other: "es demasiado largo (%{count} caracteres máximo)"
|
||||
too_short:
|
||||
one: "es demasiado corto (1 carácter mínimo)"
|
||||
other: "es demasiado corto (%{count} caracteres mínimo)"
|
||||
wrong_length:
|
||||
one: "no tiene la longitud correcta (1 carácter exactos)"
|
||||
other: "no tiene la longitud correcta (%{count} caracteres exactos)"
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Se encontraron problemas con los siguientes campos:'
|
||||
header:
|
||||
@ -157,10 +172,14 @@ es-CL:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -177,9 +196,12 @@ es-CL:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n %"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -194,4 +216,4 @@ es-CL:
|
||||
default: "%A, %d de %B de %Y %H:%M:%S %z"
|
||||
long: "%A %d de %B de %Y %H:%M"
|
||||
short: "%d de %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-CO:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-CO:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-CO:
|
||||
invalid: es inválido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número impar
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya ha sido tomado
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-CO:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-CO:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -183,6 +196,8 @@ es-CO:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -200,4 +215,4 @@ es-CO:
|
||||
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
|
||||
long: "%A, %d de %B de %Y a las %I:%M %p"
|
||||
short: "%d de %b a las %H:%M hrs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-CR:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-CR:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-CR:
|
||||
invalid: es inválido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número impar
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya ha sido utilizado
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-CR:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-CR:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -183,9 +196,12 @@ es-CR:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
format: "%n %"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -200,4 +216,4 @@ es-CR:
|
||||
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
|
||||
long: "%A, %d de %B de %Y a las %I:%M %p"
|
||||
short: "%d de %b a las %H:%M hrs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-DO:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%-d/%-m/%Y"
|
||||
long: "%A, %-d de %B de %Y"
|
||||
short: "%-d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-DO:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,9 +122,11 @@ es-DO:
|
||||
invalid: no es válido(a)
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor que o igual a %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un número entero
|
||||
odd: debe ser un número impar
|
||||
required: debe existir
|
||||
taken: ya está en uso
|
||||
too_long:
|
||||
one: es demasiado largo(a) (máximo 1 caracter)
|
||||
@ -126,6 +138,7 @@ es-DO:
|
||||
one: no tiene la longitud correcta (debe ser de 1 caracter)
|
||||
other: no tiene la longitud correcta (debe ser de %{count} caracteres)
|
||||
other_than: debe ser diferente de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: "Revise que los siguientes campos sean válidos:"
|
||||
header:
|
||||
@ -183,6 +196,8 @@ es-DO:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ""
|
||||
@ -201,4 +216,4 @@ es-DO:
|
||||
default: "%A, %-d de %B de %Y a las %-I:%M:%S %p %Z"
|
||||
long: "%-d de %B de %Y a las %-I:%M %p"
|
||||
short: "%-d %b %-I:%M %p"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-EC:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un(a) %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%-d/%m/%Y"
|
||||
long: "%A, %-d de %B de %Y"
|
||||
short: "%-d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-EC:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-EC:
|
||||
invalid: no es válido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor que o igual a %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número impar
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un(a) %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya está en uso
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-EC:
|
||||
one: no tiene la longitud correcta (debe ser de 1 caracter)
|
||||
other: no tiene la longitud correcta (debe ser de %{count} caracteres)
|
||||
other_than: debe ser diferente de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-EC:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -183,6 +196,8 @@ es-EC:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -201,4 +216,4 @@ es-EC:
|
||||
default: "%A, %-d de %B de %Y a las %-I:%M:%S %p %Z"
|
||||
long: "%-d de %B de %Y a las %-I:%M %p"
|
||||
short: "%-d %b %-I:%M %p"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-ES:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%-d/%-m/%Y"
|
||||
long: "%-d de %B de %Y"
|
||||
short: "%-d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-ES:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-ES:
|
||||
invalid: no es válido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor que o igual a %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser impar
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya está en uso
|
||||
too_long:
|
||||
one: "es demasiado largo (1 carácter máximo)"
|
||||
@ -130,6 +138,7 @@ es-ES:
|
||||
one: "no tiene la longitud correcta (1 carácter exactos)"
|
||||
other: "no tiene la longitud correcta (%{count} caracteres exactos)"
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Se encontraron problemas con los siguientes campos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-ES:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -183,9 +196,12 @@ es-ES:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n %"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -200,4 +216,4 @@ es-ES:
|
||||
default: "%A, %-d de %B de %Y %H:%M:%S %z"
|
||||
long: "%-d de %B de %Y %H:%M"
|
||||
short: "%-d de %b %H:%M"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-MX:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: El registro no puede ser eliminado pues existe un %{record} dependiente
|
||||
has_many: El registro no puede ser eliminado pues existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-MX:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-MX:
|
||||
invalid: es inválido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número non
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: El registro no puede ser eliminado pues existe un %{record} dependiente
|
||||
many: El registro no puede ser eliminado pues existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya ha sido tomado
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-MX:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser diferente a %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-MX:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -183,6 +196,8 @@ es-MX:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -201,4 +216,4 @@ es-MX:
|
||||
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
|
||||
long: "%A, %d de %B de %Y a las %I:%M %p"
|
||||
short: "%d de %b a las %H:%M hrs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-PA:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un(a) %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%-d/%m/%Y"
|
||||
long: "%A, %-d de %B de %Y"
|
||||
short: "%-d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-PA:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-PA:
|
||||
invalid: no es válido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor que o igual a %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número impar
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un(a) %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya está en uso
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-PA:
|
||||
one: no tiene la longitud correcta (debe ser de 1 caracter)
|
||||
other: no tiene la longitud correcta (debe ser de %{count} caracteres)
|
||||
other_than: debe ser diferente de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-PA:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -183,6 +196,8 @@ es-PA:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -201,4 +216,4 @@ es-PA:
|
||||
default: "%A, %-d de %B de %Y a las %-I:%M:%S %p %Z"
|
||||
long: "%-d de %B de %Y a las %-I:%M %p"
|
||||
short: "%-d %b %-I:%M %p"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-PE:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Falla de validación: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B del %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-PE:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-PE:
|
||||
invalid: es inválido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número non
|
||||
record_invalid: 'Falla de validación: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya ha sido tomado
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-PE:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-PE:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: billón
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: cuatrillón
|
||||
thousand: mil
|
||||
trillion: trillón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -183,9 +196,12 @@ es-PE:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -200,4 +216,4 @@ es-PE:
|
||||
default: "%a, %d de %b del %Y a las %H:%M:%S %Z"
|
||||
long: "%A, %d de %B del %Y a las %I:%M %p"
|
||||
short: "%d de %b a las %H:%M hrs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-US:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-US:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-US:
|
||||
invalid: es inválido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número non
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya ha sido tomado
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-US:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-US:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -183,9 +196,12 @@ es-US:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -200,4 +216,4 @@ es-US:
|
||||
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
|
||||
long: "%A, %d de %B de %Y a las %I:%M %p"
|
||||
short: "%d de %b a las %H:%M hrs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
es-VE:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%A, %d de %B de %Y"
|
||||
short: "%d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ es-VE:
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
@ -112,13 +122,11 @@ es-VE:
|
||||
invalid: no es válido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor o igual que %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser un número impar
|
||||
record_invalid: 'La validación falló: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
required: debe existir
|
||||
taken: ya está en uso
|
||||
too_long:
|
||||
one: es demasiado largo (máximo 1 caracter)
|
||||
@ -130,6 +138,7 @@ es-VE:
|
||||
one: longitud errónea (debe ser de 1 caracter)
|
||||
other: longitud errónea (debe ser de %{count} caracteres)
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Revise que los siguientes campos sean válidos:'
|
||||
header:
|
||||
@ -163,10 +172,14 @@ es-VE:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million: millón
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion: billón
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: "."
|
||||
@ -183,9 +196,12 @@ es-VE:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ","
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ","
|
||||
@ -200,4 +216,4 @@ es-VE:
|
||||
default: "%a, %d de %b de %Y a las %H:%M:%S%p %Z"
|
||||
long: "%A, %d de %B de %Y a las %I:%M%p"
|
||||
short: "%d de %b a las %H:%M%p"
|
||||
pm: pm
|
||||
pm: pm
|
219
config/locales/rails.es.yml
Normal file
219
config/locales/rails.es.yml
Normal file
@ -0,0 +1,219 @@
|
||||
es:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "La validación falló: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
|
||||
has_many: No se puede eliminar el registro porque existen %{record} dependientes
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dom
|
||||
- lun
|
||||
- mar
|
||||
- mié
|
||||
- jue
|
||||
- vie
|
||||
- sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- ene
|
||||
- feb
|
||||
- mar
|
||||
- abr
|
||||
- may
|
||||
- jun
|
||||
- jul
|
||||
- ago
|
||||
- sep
|
||||
- oct
|
||||
- nov
|
||||
- dic
|
||||
day_names:
|
||||
- domingo
|
||||
- lunes
|
||||
- martes
|
||||
- miércoles
|
||||
- jueves
|
||||
- viernes
|
||||
- sábado
|
||||
formats:
|
||||
default: "%-d/%-m/%Y"
|
||||
long: "%-d de %B de %Y"
|
||||
short: "%-d de %b"
|
||||
month_names:
|
||||
-
|
||||
- enero
|
||||
- febrero
|
||||
- marzo
|
||||
- abril
|
||||
- mayo
|
||||
- junio
|
||||
- julio
|
||||
- agosto
|
||||
- septiembre
|
||||
- octubre
|
||||
- noviembre
|
||||
- diciembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
one: alrededor de 1 hora
|
||||
other: alrededor de %{count} horas
|
||||
about_x_months:
|
||||
one: alrededor de 1 mes
|
||||
other: alrededor de %{count} meses
|
||||
about_x_years:
|
||||
one: alrededor de 1 año
|
||||
other: alrededor de %{count} años
|
||||
almost_x_years:
|
||||
one: casi 1 año
|
||||
other: casi %{count} años
|
||||
half_a_minute: medio minuto
|
||||
less_than_x_minutes:
|
||||
one: menos de 1 minuto
|
||||
other: menos de %{count} minutos
|
||||
less_than_x_seconds:
|
||||
one: menos de 1 segundo
|
||||
other: menos de %{count} segundos
|
||||
over_x_years:
|
||||
one: más de 1 año
|
||||
other: más de %{count} años
|
||||
x_days:
|
||||
one: 1 día
|
||||
other: "%{count} días"
|
||||
x_minutes:
|
||||
one: 1 minuto
|
||||
other: "%{count} minutos"
|
||||
x_months:
|
||||
one: 1 mes
|
||||
other: "%{count} meses"
|
||||
x_years:
|
||||
one: 1 año
|
||||
other: "%{count} años"
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
prompts:
|
||||
day: Día
|
||||
hour: Hora
|
||||
minute: Minutos
|
||||
month: Mes
|
||||
second: Segundos
|
||||
year: Año
|
||||
errors:
|
||||
format: "%{attribute} %{message}"
|
||||
messages:
|
||||
accepted: debe ser aceptado
|
||||
blank: no puede estar en blanco
|
||||
present: debe estar en blanco
|
||||
confirmation: no coincide
|
||||
empty: no puede estar vacío
|
||||
equal_to: debe ser igual a %{count}
|
||||
even: debe ser par
|
||||
exclusion: está reservado
|
||||
greater_than: debe ser mayor que %{count}
|
||||
greater_than_or_equal_to: debe ser mayor que o igual a %{count}
|
||||
inclusion: no está incluido en la lista
|
||||
invalid: no es válido
|
||||
less_than: debe ser menor que %{count}
|
||||
less_than_or_equal_to: debe ser menor que o igual a %{count}
|
||||
model_invalid: "La validación falló: %{errors}"
|
||||
not_a_number: no es un número
|
||||
not_an_integer: debe ser un entero
|
||||
odd: debe ser impar
|
||||
required: debe existir
|
||||
taken: ya está en uso
|
||||
too_long:
|
||||
one: "es demasiado largo (1 carácter máximo)"
|
||||
other: "es demasiado largo (%{count} caracteres máximo)"
|
||||
too_short:
|
||||
one: "es demasiado corto (1 carácter mínimo)"
|
||||
other: "es demasiado corto (%{count} caracteres mínimo)"
|
||||
wrong_length:
|
||||
one: "no tiene la longitud correcta (1 carácter exactos)"
|
||||
other: "no tiene la longitud correcta (%{count} caracteres exactos)"
|
||||
other_than: debe ser distinto de %{count}
|
||||
wrong_content_type: "el tipo de contenido no está permitido"
|
||||
template:
|
||||
body: 'Se encontraron problemas con los siguientes campos:'
|
||||
header:
|
||||
one: No se pudo guardar este/a %{model} porque se encontró 1 error
|
||||
other: No se pudo guardar este/a %{model} porque se encontraron %{count} errores
|
||||
helpers:
|
||||
select:
|
||||
prompt: Por favor seleccione
|
||||
submit:
|
||||
create: Crear %{model}
|
||||
submit: Guardar %{model}
|
||||
update: Actualizar %{model}
|
||||
number:
|
||||
currency:
|
||||
format:
|
||||
delimiter: "."
|
||||
format: "%n %u"
|
||||
precision: 2
|
||||
separator: ","
|
||||
significant: false
|
||||
strip_insignificant_zeros: false
|
||||
unit: "€"
|
||||
format:
|
||||
delimiter: "."
|
||||
precision: 3
|
||||
separator: ","
|
||||
significant: false
|
||||
strip_insignificant_zeros: false
|
||||
human:
|
||||
decimal_units:
|
||||
format: "%n %u"
|
||||
units:
|
||||
billion: mil millones
|
||||
million:
|
||||
one: millón
|
||||
other: millones
|
||||
quadrillion: mil billones
|
||||
thousand: mil
|
||||
trillion:
|
||||
one: billón
|
||||
other: billones
|
||||
unit: ''
|
||||
format:
|
||||
delimiter: ''
|
||||
precision: 1
|
||||
significant: true
|
||||
strip_insignificant_zeros: true
|
||||
storage_units:
|
||||
format: "%n %u"
|
||||
units:
|
||||
byte:
|
||||
one: Byte
|
||||
other: Bytes
|
||||
gb: GB
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n %"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
support:
|
||||
array:
|
||||
last_word_connector: " y "
|
||||
two_words_connector: " y "
|
||||
words_connector: ", "
|
||||
time:
|
||||
am: am
|
||||
formats:
|
||||
default: "%A, %-d de %B de %Y %H:%M:%S %z"
|
||||
long: "%-d de %B de %Y %H:%M"
|
||||
short: "%-d de %b %H:%M"
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
fr-CA:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record} dépendant(e) existe"
|
||||
has_many: "Vous ne pouvez pas supprimer l'enregistrement parce que les %{record} dépendants existent"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
abbr_month_names:
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
day_names:
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
formats:
|
||||
default: "%Y-%m-%d"
|
||||
long: "%d %B %Y"
|
||||
short: "%y-%m-%d"
|
||||
long: "%d %B %Y"
|
||||
month_names:
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -68,13 +75,13 @@ fr-CA:
|
||||
other: presque %{count} ans
|
||||
half_a_minute: une demi-minute
|
||||
less_than_x_minutes:
|
||||
zero: moins d'une minute
|
||||
one: moins d'une minute
|
||||
other: moins de %{count} minutes
|
||||
zero: moins d'une minute
|
||||
less_than_x_seconds:
|
||||
zero: moins d'une seconde
|
||||
one: moins d'une seconde
|
||||
other: moins de %{count} secondes
|
||||
zero: moins d'une seconde
|
||||
over_x_years:
|
||||
one: plus d'un an
|
||||
other: plus de %{count} ans
|
||||
@ -87,6 +94,9 @@ fr-CA:
|
||||
x_months:
|
||||
one: 1 mois
|
||||
other: "%{count} mois"
|
||||
x_years:
|
||||
one: 1 an
|
||||
other: "%{count} ans"
|
||||
x_seconds:
|
||||
one: 1 seconde
|
||||
other: "%{count} secondes"
|
||||
@ -102,6 +112,7 @@ fr-CA:
|
||||
messages:
|
||||
accepted: doit être accepté(e)
|
||||
blank: doit être rempli(e)
|
||||
present: doit être vide
|
||||
confirmation: ne concorde pas avec %{attribute}
|
||||
empty: doit être rempli(e)
|
||||
equal_to: doit être égal à %{count}
|
||||
@ -113,10 +124,11 @@ fr-CA:
|
||||
invalid: n'est pas valide
|
||||
less_than: doit être inférieur à %{count}
|
||||
less_than_or_equal_to: doit être inférieur ou égal à %{count}
|
||||
model_invalid: "Validation échouée : %{errors}"
|
||||
not_a_number: n'est pas un nombre
|
||||
not_an_integer: doit être un nombre entier
|
||||
odd: doit être impair
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
required: doit exister
|
||||
taken: n'est pas disponible
|
||||
too_long:
|
||||
one: est trop long (pas plus d'un caractère)
|
||||
@ -127,6 +139,8 @@ fr-CA:
|
||||
wrong_length:
|
||||
one: ne fait pas la bonne longueur (doit comporter un seul caractère)
|
||||
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
|
||||
other_than: doit être différent de %{count}
|
||||
wrong_content_type: "ce type de contenu n'est pas autorisé"
|
||||
template:
|
||||
body: 'Veuillez vérifier les champs suivants : '
|
||||
header:
|
||||
@ -180,9 +194,12 @@ fr-CA:
|
||||
kb: ko
|
||||
mb: Mo
|
||||
tb: To
|
||||
pb: Po
|
||||
eb: Eo
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
format: "%n%"
|
||||
precision:
|
||||
format:
|
||||
delimiter: ''
|
||||
|
@ -1,57 +1,64 @@
|
||||
fr-CH:
|
||||
date:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record} dépendant(e) existe"
|
||||
has_many: "Vous ne pouvez pas supprimer l'enregistrement parce que les %{record} dépendants existent"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
abbr_month_names:
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
day_names:
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
formats:
|
||||
default: "%d.%m.%Y"
|
||||
long: "%e %B %Y"
|
||||
short: "%e %b"
|
||||
long: "%e %B %Y"
|
||||
month_names:
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -68,13 +75,13 @@ fr-CH:
|
||||
other: presque %{count} ans
|
||||
half_a_minute: une demi-minute
|
||||
less_than_x_minutes:
|
||||
zero: moins d'une minute
|
||||
one: moins d'une minute
|
||||
other: moins de %{count} minutes
|
||||
zero: moins d'une minute
|
||||
less_than_x_seconds:
|
||||
zero: moins d'une seconde
|
||||
one: moins d'une seconde
|
||||
other: moins de %{count} secondes
|
||||
zero: moins d'une seconde
|
||||
over_x_years:
|
||||
one: plus d'un an
|
||||
other: plus de %{count} ans
|
||||
@ -87,6 +94,9 @@ fr-CH:
|
||||
x_months:
|
||||
one: 1 mois
|
||||
other: "%{count} mois"
|
||||
x_years:
|
||||
one: 1 an
|
||||
other: "%{count} ans"
|
||||
x_seconds:
|
||||
one: 1 seconde
|
||||
other: "%{count} secondes"
|
||||
@ -114,13 +124,11 @@ fr-CH:
|
||||
invalid: n'est pas valide
|
||||
less_than: doit être inférieur à %{count}
|
||||
less_than_or_equal_to: doit être inférieur ou égal à %{count}
|
||||
model_invalid: "Validation échouée : %{errors}"
|
||||
not_a_number: n'est pas un nombre
|
||||
not_an_integer: doit être un nombre entier
|
||||
odd: doit être impair
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: 'Suppression impossible: un autre enregistrement est lié'
|
||||
many: 'Suppression impossible: d''autres enregistrements sont liés'
|
||||
required: doit exister
|
||||
taken: n'est pas disponible
|
||||
too_long:
|
||||
one: est trop long (pas plus d'un caractère)
|
||||
@ -186,6 +194,8 @@ fr-CH:
|
||||
kb: ko
|
||||
mb: Mo
|
||||
tb: To
|
||||
pb: Po
|
||||
eb: Eo
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
|
@ -1,57 +1,64 @@
|
||||
fr-CM:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record} dépendant(e) existe"
|
||||
has_many: "Vous ne pouvez pas supprimer l'enregistrement parce que les %{record} dépendants existent"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
abbr_month_names:
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
day_names:
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
short: "%e %b"
|
||||
long: "%A%e %B %Y"
|
||||
month_names:
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -87,6 +94,9 @@ fr-CM:
|
||||
x_months:
|
||||
one: 1 mois
|
||||
other: "%{count} mois"
|
||||
x_years:
|
||||
one: 1 an
|
||||
other: "%{count} ans"
|
||||
x_seconds:
|
||||
one: 1 seconde
|
||||
other: "%{count} secondes"
|
||||
@ -114,13 +124,11 @@ fr-CM:
|
||||
invalid: n'est pas valide
|
||||
less_than: doit être inférieur à %{count}
|
||||
less_than_or_equal_to: doit être inférieur ou égal à %{count}
|
||||
model_invalid: "Validation échouée : %{errors}"
|
||||
not_a_number: n'est pas un nombre
|
||||
not_an_integer: doit être un nombre entier
|
||||
odd: doit être impair
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: 'Suppression impossible: un autre enregistrement est lié'
|
||||
many: 'Suppression impossible: d''autres enregistrements sont liés'
|
||||
required: doit exister
|
||||
taken: n'est pas disponible
|
||||
too_long:
|
||||
one: est trop long (pas plus d'un caractère)
|
||||
@ -186,6 +194,8 @@ fr-CM:
|
||||
kb: ko
|
||||
mb: Mo
|
||||
tb: To
|
||||
pb: Po
|
||||
eb: Eo
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
|
@ -1,57 +1,64 @@
|
||||
fr-FR:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record} dépendant(e) existe"
|
||||
has_many: "Vous ne pouvez pas supprimer l'enregistrement parce que les %{record} dépendants existent"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
abbr_month_names:
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
day_names:
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
short: "%e %b"
|
||||
long: "%e %B %Y"
|
||||
month_names:
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -87,6 +94,9 @@ fr-FR:
|
||||
x_months:
|
||||
one: 1 mois
|
||||
other: "%{count} mois"
|
||||
x_years:
|
||||
one: 1 an
|
||||
other: "%{count} ans"
|
||||
x_seconds:
|
||||
one: 1 seconde
|
||||
other: "%{count} secondes"
|
||||
@ -114,13 +124,11 @@ fr-FR:
|
||||
invalid: n'est pas valide
|
||||
less_than: doit être inférieur à %{count}
|
||||
less_than_or_equal_to: doit être inférieur ou égal à %{count}
|
||||
model_invalid: "Validation échouée : %{errors}"
|
||||
not_a_number: n'est pas un nombre
|
||||
not_an_integer: doit être un nombre entier
|
||||
odd: doit être impair
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: 'Suppression impossible: un autre enregistrement est lié'
|
||||
many: 'Suppression impossible: d''autres enregistrements sont liés'
|
||||
required: doit exister
|
||||
taken: n'est pas disponible
|
||||
too_long:
|
||||
one: est trop long (pas plus d'un caractère)
|
||||
@ -132,6 +140,7 @@ fr-FR:
|
||||
one: ne fait pas la bonne longueur (doit comporter un seul caractère)
|
||||
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
|
||||
other_than: doit être différent de %{count}
|
||||
wrong_content_type: "ce type de contenu n'est pas autorisé"
|
||||
template:
|
||||
body: 'Veuillez vérifier les champs suivants : '
|
||||
header:
|
||||
@ -185,6 +194,8 @@ fr-FR:
|
||||
kb: ko
|
||||
mb: Mo
|
||||
tb: To
|
||||
pb: Po
|
||||
eb: Eo
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
|
@ -1,57 +1,64 @@
|
||||
fr:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record} dépendant(e) existe"
|
||||
has_many: "Vous ne pouvez pas supprimer l'enregistrement parce que les %{record} dépendants existent"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
- dim
|
||||
- lun
|
||||
- mar
|
||||
- mer
|
||||
- jeu
|
||||
- ven
|
||||
- sam
|
||||
abbr_month_names:
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
-
|
||||
- jan.
|
||||
- fév.
|
||||
- mar.
|
||||
- avr.
|
||||
- mai
|
||||
- juin
|
||||
- juil.
|
||||
- août
|
||||
- sept.
|
||||
- oct.
|
||||
- nov.
|
||||
- déc.
|
||||
day_names:
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
- dimanche
|
||||
- lundi
|
||||
- mardi
|
||||
- mercredi
|
||||
- jeudi
|
||||
- vendredi
|
||||
- samedi
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
short: "%e %b"
|
||||
long: "%A%e %B %Y"
|
||||
long: "%e %B %Y"
|
||||
month_names:
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
-
|
||||
- janvier
|
||||
- février
|
||||
- mars
|
||||
- avril
|
||||
- mai
|
||||
- juin
|
||||
- juillet
|
||||
- août
|
||||
- septembre
|
||||
- octobre
|
||||
- novembre
|
||||
- décembre
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -87,6 +94,9 @@ fr:
|
||||
x_months:
|
||||
one: 1 mois
|
||||
other: "%{count} mois"
|
||||
x_years:
|
||||
one: 1 an
|
||||
other: "%{count} ans"
|
||||
x_seconds:
|
||||
one: 1 seconde
|
||||
other: "%{count} secondes"
|
||||
@ -114,13 +124,11 @@ fr:
|
||||
invalid: n'est pas valide
|
||||
less_than: doit être inférieur à %{count}
|
||||
less_than_or_equal_to: doit être inférieur ou égal à %{count}
|
||||
model_invalid: "Validation échouée : %{errors}"
|
||||
not_a_number: n'est pas un nombre
|
||||
not_an_integer: doit être un nombre entier
|
||||
odd: doit être impair
|
||||
record_invalid: 'La validation a échoué : %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: 'Suppression impossible: un autre enregistrement est lié'
|
||||
many: 'Suppression impossible: d''autres enregistrements sont liés'
|
||||
required: doit exister
|
||||
taken: n'est pas disponible
|
||||
too_long:
|
||||
one: est trop long (pas plus d'un caractère)
|
||||
@ -186,6 +194,8 @@ fr:
|
||||
kb: ko
|
||||
mb: Mo
|
||||
tb: To
|
||||
pb: Po
|
||||
eb: Eo
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
|
@ -75,42 +75,43 @@
|
||||
one: nesten 1 år
|
||||
other: nesten %{count} år
|
||||
half_a_minute: et halvt minutt
|
||||
less_than_x_seconds:
|
||||
one: mindre enn 1 sekund
|
||||
other: mindre enn %{count} sekunder
|
||||
less_than_x_minutes:
|
||||
one: mindre enn 1 minutt
|
||||
other: mindre enn %{count} minutter
|
||||
less_than_x_seconds:
|
||||
one: mindre enn 1 sekund
|
||||
other: mindre enn %{count} sekunder
|
||||
over_x_years:
|
||||
one: over 1 år
|
||||
other: over %{count} år
|
||||
x_seconds:
|
||||
one: 1 sekund
|
||||
other: "%{count} sekunder"
|
||||
x_minutes:
|
||||
one: 1 minutt
|
||||
other: "%{count} minutter"
|
||||
x_days:
|
||||
one: 1 dag
|
||||
other: "%{count} dager"
|
||||
x_minutes:
|
||||
one: 1 minutt
|
||||
other: "%{count} minutter"
|
||||
x_months:
|
||||
one: 1 måned
|
||||
other: "%{count} måneder"
|
||||
x_years:
|
||||
one: 1 år
|
||||
other: "%{count} år"
|
||||
x_seconds:
|
||||
one: 1 sekund
|
||||
other: "%{count} sekunder"
|
||||
prompts:
|
||||
second: sekund
|
||||
minute: minutt
|
||||
hour: time
|
||||
day: dag
|
||||
hour: time
|
||||
minute: minutt
|
||||
month: måned
|
||||
second: sekund
|
||||
year: år
|
||||
errors:
|
||||
format: "%{attribute} %{message}"
|
||||
messages:
|
||||
accepted: må være akseptert
|
||||
blank: kan ikke være tom
|
||||
blank: kan ikke være blank
|
||||
present: må være blank
|
||||
confirmation: er ikke lik %{attribute}
|
||||
empty: kan ikke være tom
|
||||
equal_to: må være lik %{count}
|
||||
@ -122,23 +123,16 @@
|
||||
invalid: er ugyldig
|
||||
less_than: må være mindre enn %{count}
|
||||
less_than_or_equal_to: må være mindre enn eller lik %{count}
|
||||
model_invalid: 'Det oppstod feil: %{errors}'
|
||||
model_invalid: "Det oppstod feil: %{errors}"
|
||||
not_a_number: er ikke et tall
|
||||
not_an_integer: er ikke et heltall
|
||||
odd: må være oddetall
|
||||
other_than: kan ikke være nøyaktig %{count}
|
||||
present: må være tom
|
||||
required: må eksistere
|
||||
taken: er allerede i bruk
|
||||
too_long:
|
||||
one: er for lang (maksimalt 1 tegn)
|
||||
other: er for lang (maksimalt %{count} tegn)
|
||||
too_short:
|
||||
one: er for kort (minst 1 tegn)
|
||||
other: er for kort (minst %{count} tegn)
|
||||
wrong_length:
|
||||
one: har feil lengde (må være 1 tegn)
|
||||
other: har feil lengde (må være %{count} tegn)
|
||||
too_long: er for lang (maksimum %{count} tegn)
|
||||
too_short: er for kort (minimum %{count} tegn)
|
||||
wrong_length: er av feil lengde (maksimum %{count} tegn)
|
||||
other_than: kan ikke være nøyaktig %{count}
|
||||
template:
|
||||
body: 'Det oppstod problemer med følgende felt:'
|
||||
header:
|
||||
@ -218,4 +212,4 @@
|
||||
default: "%A, %e. %B %Y, %H:%M"
|
||||
long: "%A, %e. %B %Y, %H:%M"
|
||||
short: "%e. %B, %H:%M"
|
||||
pm: ''
|
||||
pm: ''
|
@ -1,57 +1,64 @@
|
||||
pt-BR:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'A validação falhou: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_many: Não pode ser eliminado por existirem dependências de %{record}
|
||||
has_one: Não pode ser eliminado por existir uma dependência de %{record}
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Dom
|
||||
- Seg
|
||||
- Ter
|
||||
- Qua
|
||||
- Qui
|
||||
- Sex
|
||||
- Sáb
|
||||
- Dom
|
||||
- Seg
|
||||
- Ter
|
||||
- Qua
|
||||
- Qui
|
||||
- Sex
|
||||
- Sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Fev
|
||||
- Mar
|
||||
- Abr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Ago
|
||||
- Set
|
||||
- Out
|
||||
- Nov
|
||||
- Dez
|
||||
-
|
||||
- Jan
|
||||
- Fev
|
||||
- Mar
|
||||
- Abr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Ago
|
||||
- Set
|
||||
- Out
|
||||
- Nov
|
||||
- Dez
|
||||
day_names:
|
||||
- Domingo
|
||||
- Segunda-feira
|
||||
- Terça-feira
|
||||
- Quarta-feira
|
||||
- Quinta-feira
|
||||
- Sexta-feira
|
||||
- Sábado
|
||||
- Domingo
|
||||
- Segunda-feira
|
||||
- Terça-feira
|
||||
- Quarta-feira
|
||||
- Quinta-feira
|
||||
- Sexta-feira
|
||||
- Sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%d de %B de %Y"
|
||||
short: "%d de %B"
|
||||
month_names:
|
||||
-
|
||||
- Janeiro
|
||||
- Fevereiro
|
||||
- Março
|
||||
- Abril
|
||||
- Maio
|
||||
- Junho
|
||||
- Julho
|
||||
- Agosto
|
||||
- Setembro
|
||||
- Outubro
|
||||
- Novembro
|
||||
- Dezembro
|
||||
-
|
||||
- Janeiro
|
||||
- Fevereiro
|
||||
- Março
|
||||
- Abril
|
||||
- Maio
|
||||
- Junho
|
||||
- Julho
|
||||
- Agosto
|
||||
- Setembro
|
||||
- Outubro
|
||||
- Novembro
|
||||
- Dezembro
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -88,6 +95,9 @@ pt-BR:
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
x_years:
|
||||
one: 1 ano
|
||||
other: "%{count} anos"
|
||||
prompts:
|
||||
day: Dia
|
||||
hour: Hora
|
||||
@ -100,7 +110,6 @@ pt-BR:
|
||||
messages:
|
||||
accepted: deve ser aceito
|
||||
blank: não pode ficar em branco
|
||||
present: deve ficar em branco
|
||||
confirmation: não é igual a %{attribute}
|
||||
empty: não pode ficar vazio
|
||||
equal_to: deve ser igual a %{count}
|
||||
@ -112,18 +121,17 @@ pt-BR:
|
||||
invalid: não é válido
|
||||
less_than: deve ser menor que %{count}
|
||||
less_than_or_equal_to: deve ser menor ou igual a %{count}
|
||||
model_invalid: 'A validação falhou: %{errors}'
|
||||
not_a_number: não é um número
|
||||
not_an_integer: não é um número inteiro
|
||||
odd: deve ser ímpar
|
||||
record_invalid: 'A validação falhou: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Não é possível excluir o registro pois existe um %{record} dependente
|
||||
many: Não é possível excluir o registro pois existem %{record} dependentes
|
||||
other_than: deve ser diferente de %{count}
|
||||
present: deve ficar em branco
|
||||
required: é obrigatório
|
||||
taken: já está em uso
|
||||
too_long: 'é muito longo (máximo: %{count} caracteres)'
|
||||
too_short: 'é muito curto (mínimo: %{count} caracteres)'
|
||||
wrong_length: não possui o tamanho esperado (%{count} caracteres)
|
||||
other_than: deve ser diferente de %{count}
|
||||
template:
|
||||
body: 'Por favor, verifique o(s) seguinte(s) campo(s):'
|
||||
header:
|
||||
@ -185,6 +193,8 @@ pt-BR:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: "."
|
||||
@ -203,4 +213,4 @@ pt-BR:
|
||||
default: "%a, %d de %B de %Y, %H:%M:%S %z"
|
||||
long: "%d de %B de %Y, %H:%M"
|
||||
short: "%d de %B, %H:%M"
|
||||
pm: ''
|
||||
pm: ''
|
@ -1,57 +1,64 @@
|
||||
pt:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: 'A validação falhou: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
has_many: Não pode ser eliminado por existirem dependências de %{record}
|
||||
has_one: Não pode ser eliminado por existir uma dependência de %{record}
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Dom
|
||||
- Seg
|
||||
- Ter
|
||||
- Qua
|
||||
- Qui
|
||||
- Sex
|
||||
- Sáb
|
||||
- Dom
|
||||
- Seg
|
||||
- Ter
|
||||
- Qua
|
||||
- Qui
|
||||
- Sex
|
||||
- Sáb
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Fev
|
||||
- Mar
|
||||
- Abr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Ago
|
||||
- Set
|
||||
- Out
|
||||
- Nov
|
||||
- Dez
|
||||
-
|
||||
- Jan
|
||||
- Fev
|
||||
- Mar
|
||||
- Abr
|
||||
- Mai
|
||||
- Jun
|
||||
- Jul
|
||||
- Ago
|
||||
- Set
|
||||
- Out
|
||||
- Nov
|
||||
- Dez
|
||||
day_names:
|
||||
- Domingo
|
||||
- Segunda-feira
|
||||
- Terça-feira
|
||||
- Quarta-feira
|
||||
- Quinta-feira
|
||||
- Sexta-feira
|
||||
- Sábado
|
||||
- Domingo
|
||||
- Segunda-feira
|
||||
- Terça-feira
|
||||
- Quarta-feira
|
||||
- Quinta-feira
|
||||
- Sexta-feira
|
||||
- Sábado
|
||||
formats:
|
||||
default: "%d/%m/%Y"
|
||||
long: "%d de %B de %Y"
|
||||
short: "%d de %B"
|
||||
month_names:
|
||||
-
|
||||
- Janeiro
|
||||
- Fevereiro
|
||||
- Março
|
||||
- Abril
|
||||
- Maio
|
||||
- Junho
|
||||
- Julho
|
||||
- Agosto
|
||||
- Setembro
|
||||
- Outubro
|
||||
- Novembro
|
||||
- Dezembro
|
||||
-
|
||||
- Janeiro
|
||||
- Fevereiro
|
||||
- Março
|
||||
- Abril
|
||||
- Maio
|
||||
- Junho
|
||||
- Julho
|
||||
- Agosto
|
||||
- Setembro
|
||||
- Outubro
|
||||
- Novembro
|
||||
- Dezembro
|
||||
order:
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
- :day
|
||||
- :month
|
||||
- :year
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -88,6 +95,9 @@ pt:
|
||||
x_seconds:
|
||||
one: 1 segundo
|
||||
other: "%{count} segundos"
|
||||
x_years:
|
||||
one: 1 ano
|
||||
other: "%{count} anos"
|
||||
prompts:
|
||||
day: Dia
|
||||
hour: Hora
|
||||
@ -111,10 +121,13 @@ pt:
|
||||
invalid: é inválido
|
||||
less_than: tem de ser menor que %{count}
|
||||
less_than_or_equal_to: tem de ser menor ou igual a %{count}
|
||||
model_invalid: 'A validação falhou: %{errors}'
|
||||
not_a_number: não é um número
|
||||
not_an_integer: tem de ser um inteiro
|
||||
odd: tem de ser ímpar
|
||||
record_invalid: 'A validação falhou: %{errors}'
|
||||
other_than: tem de ser diferente de %{count}
|
||||
present: não pode estar em branco
|
||||
required: é obrigatório
|
||||
taken: não está disponível
|
||||
too_long: é demasiado grande (o máximo é de %{count} caracteres)
|
||||
too_short: é demasiado pequeno (o mínimo é de %{count} caracteres)
|
||||
@ -122,8 +135,8 @@ pt:
|
||||
template:
|
||||
body: 'Por favor, verifique os seguintes campos:'
|
||||
header:
|
||||
one: 'Não foi possível guardar %{model}: 1 erro'
|
||||
other: 'Não foi possível guardar %{model}: %{count} erros'
|
||||
one: '1 erro impediu guardar este %{model}'
|
||||
other: '%{count} erros impediram guardar este %{model}'
|
||||
helpers:
|
||||
select:
|
||||
prompt: Por favor seleccione
|
||||
@ -134,8 +147,8 @@ pt:
|
||||
number:
|
||||
currency:
|
||||
format:
|
||||
delimiter: " "
|
||||
format: "%n %u"
|
||||
delimiter: "."
|
||||
format: "%u %n"
|
||||
precision: 2
|
||||
separator: ","
|
||||
significant: false
|
||||
@ -180,6 +193,8 @@ pt:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
@ -188,7 +203,7 @@ pt:
|
||||
delimiter: ''
|
||||
support:
|
||||
array:
|
||||
last_word_connector: ", e"
|
||||
last_word_connector: " e "
|
||||
two_words_connector: " e "
|
||||
words_connector: ", "
|
||||
time:
|
||||
@ -197,4 +212,4 @@ pt:
|
||||
default: "%A, %d de %B de %Y, %H:%Mh"
|
||||
long: "%A, %d de %B de %Y, %H:%Mh"
|
||||
short: "%d/%m, %H:%M hs"
|
||||
pm: pm
|
||||
pm: pm
|
@ -1,57 +1,64 @@
|
||||
zu:
|
||||
activerecord:
|
||||
errors:
|
||||
messages:
|
||||
record_invalid: "Validation failed: %{errors}"
|
||||
restrict_dependent_destroy:
|
||||
has_one: "Cannot delete record because a dependent %{record} exists"
|
||||
has_many: "Cannot delete record because dependent %{record} exist"
|
||||
date:
|
||||
abbr_day_names:
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
- Sun
|
||||
- Mon
|
||||
- Tue
|
||||
- Wed
|
||||
- Thu
|
||||
- Fri
|
||||
- Sat
|
||||
abbr_month_names:
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
-
|
||||
- Jan
|
||||
- Feb
|
||||
- Mar
|
||||
- Apr
|
||||
- May
|
||||
- Jun
|
||||
- Jul
|
||||
- Aug
|
||||
- Sep
|
||||
- Oct
|
||||
- Nov
|
||||
- Dec
|
||||
day_names:
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
- Sunday
|
||||
- Monday
|
||||
- Tuesday
|
||||
- Wednesday
|
||||
- Thursday
|
||||
- Friday
|
||||
- Saturday
|
||||
formats:
|
||||
default: "%Y-%m-%d"
|
||||
long: "%B %d, %Y"
|
||||
short: "%b %d"
|
||||
month_names:
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
-
|
||||
- January
|
||||
- February
|
||||
- March
|
||||
- April
|
||||
- May
|
||||
- June
|
||||
- July
|
||||
- August
|
||||
- September
|
||||
- October
|
||||
- November
|
||||
- December
|
||||
order:
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
- :year
|
||||
- :month
|
||||
- :day
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours:
|
||||
@ -85,6 +92,9 @@ zu:
|
||||
x_months:
|
||||
one: 1 month
|
||||
other: "%{count} months"
|
||||
x_years:
|
||||
one: 1 year
|
||||
other: "%{count} years"
|
||||
x_seconds:
|
||||
one: 1 second
|
||||
other: "%{count} seconds"
|
||||
@ -112,13 +122,11 @@ zu:
|
||||
invalid: is invalid
|
||||
less_than: must be less than %{count}
|
||||
less_than_or_equal_to: must be less than or equal to %{count}
|
||||
model_invalid: "Validation failed: %{errors}"
|
||||
not_a_number: is not a number
|
||||
not_an_integer: must be an integer
|
||||
odd: must be odd
|
||||
record_invalid: 'Validation failed: %{errors}'
|
||||
restrict_dependent_destroy:
|
||||
one: Cannot delete record because a dependent %{record} exists
|
||||
many: Cannot delete record because dependent %{record} exist
|
||||
required: must exist
|
||||
taken: has already been taken
|
||||
too_long:
|
||||
one: is too long (maximum is 1 character)
|
||||
@ -184,6 +192,8 @@ zu:
|
||||
kb: KB
|
||||
mb: MB
|
||||
tb: TB
|
||||
pb: PB
|
||||
eb: EB
|
||||
percentage:
|
||||
format:
|
||||
delimiter: ''
|
||||
|
12
lib/sidekiq/server_locale.rb
Normal file
12
lib/sidekiq/server_locale.rb
Normal file
@ -0,0 +1,12 @@
|
||||
module FabManager
|
||||
module Middleware
|
||||
class ServerLocale
|
||||
def call(worker_class, job, queue)
|
||||
locale = job['locale'] || Rails.application.secrets.rails_locale
|
||||
I18n.with_locale(locale) do
|
||||
yield
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user