X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7b384f03ab1d34fd3ebcc5ae3add25b3b5591e2e..7a5ac0394dfcd5d1cd5a8b659563ddd7afc33332:/vendor/plugins/rails-i18n/locale/pt-PT.yml diff --git a/vendor/plugins/rails-i18n/locale/pt-PT.yml b/vendor/plugins/rails-i18n/locale/pt-PT.yml index f7a607959..6fe4f6680 100644 --- a/vendor/plugins/rails-i18n/locale/pt-PT.yml +++ b/vendor/plugins/rails-i18n/locale/pt-PT.yml @@ -5,21 +5,36 @@ # If you need a previous version go to http://github.com/weppos/rails-i18n/ # and choose between available tags. pt-PT: +# Used in array.to_sentence. support: + # default value for :prompt => true in FormOptionsHelper + select: + # default value for :prompt => true in FormOptionsHelper + prompt: "Por favor seleccione" array: + # Rails <= v.2.2.2 + # sentence_connector: "y" + # Rails >= v.2.3 words_connector: "," two_words_connector: "e" last_word_connector: ", e" date: formats: + # Use the strftime parameters for formats. + # When no format has been given, it uses default. + # You can provide other formats here if you like! default: "%d/%m/%Y" short: "%d de %B" long: "%d de %B de %Y" + day_names: [Domingo, Segunda, Terça, Quarta, Quinta, Sexta, Sábado] abbr_day_names: [Dom, Seg, Ter, Qua, Qui, Sex, Sáb] + + # Don't forget the nil at the beginning; there's no such thing as a 0th month month_names: [~, Janeiro, Fevereiro, Março, Abril, Maio, Junho, Julho, Agosto, Setembro, Outubro, Novembro, Dezembro] abbr_month_names: [~, Jan, Fev, Mar, Abr, Mai, Jun, Jul, Ago, Set, Out, Nov, Dez] + # Used in date_select and datime_select. order: [:day, :month, :year] time: @@ -30,6 +45,7 @@ pt-PT: am: '' pm: '' + # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words() datetime: distance_in_words: half_a_minute: "meio minuto" @@ -63,6 +79,9 @@ pt-PT: over_x_years: one: "mais de 1 ano" other: "mais de {{count}} anos" + almost_x_years: + one: "quase 1 ano" + other: "quase {{count}} years" prompts: year: "Ano" month: "Mês" @@ -72,33 +91,59 @@ pt-PT: second: "Segundo" number: + # Used in number_with_delimiter() + # These are also the defaults for 'currency', 'percentage', 'precision', and 'human' format: + # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00) precision: 3 + # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5) separator: ',' + # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three) delimiter: '.' + + # Used in number_to_currency() currency: + # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00) format: - unit: '€' - precision: 2 format: "%u%n" + unit: '€' + # These three are to override number.format and are optional separator: ',' delimiter: '.' + precision: 2 + + # Used in number_to_percentage() percentage: format: + # These three are to override number.format and are optional + # separator: delimiter: '' + # precision: + + # Used in number_to_precision() precision: format: + # These three are to override number.format and are optional + # separator: delimiter: '' + # precision: + + # Used in number_to_human_size() human: format: - precision: 1 + # These three are to override number.format and are optional + # separator: delimiter: '' + precision: 1 + # Rails <= v2.2.2 + # storage_units: [Bytes, KB, MB, GB, TB] + # Rails >= v2.3 storage_units: - format: + format: "%n %u" units: byte: - one: "Byte" - other: "Bytes" + one: "Byte" + other: "Bytes" kb: "KB" mb: "MB" gb: "GB" @@ -108,9 +153,12 @@ pt-PT: errors: template: header: - one: "Não foi possível guardar {{model}}: 1 erro" - other: "Não foi possível guardar {{model}}: {{count}} erros" + one: "Não foi possível guardar {{model}}: 1 erro" + other: "Não foi possível guardar {{model}}: {{count}} erros" + # The variable :count is also available body: "Por favor, verifique os seguintes campos:" + # The values :model, :attribute and :value are always available for interpolation + # The value :count is available when applicable. Can be used for pluralization. messages: inclusion: "não está incluído na lista" exclusion: "não está disponível" @@ -130,4 +178,43 @@ pt-PT: less_than: "tem de ser menor do que {{count}}" less_than_or_equal_to: "tem de ser menor ou igual a {{count}}" odd: "tem de ser ímpar" - even: "tem de ser par" \ No newline at end of file + even: "tem de ser par" + record_invalid: "A validação falhou: {{errors}}" + # Append your own errors here or at the model/attributes scope. + + # You can define own errors for models or model attributes. + # The values :model, :attribute and :value are always available for interpolation. + # + # For example, + # models: + # user: + # blank: "This is a custom blank message for {{model}}: {{attribute}}" + # attributes: + # login: + # blank: "This is a custom blank message for User login" + # Will define custom blank validation message for User model and + # custom blank validation message for login attribute of User model. + #models: + + # Translate model names. Used in Model.human_name(). + #models: + # For example, + # user: "Dude" + # will translate User model name to "Dude" + + # Translate model attribute names. Used in Model.human_attribute_name(attribute). + #attributes: + # For example, + # user: + # login: "Handle" + # will translate User attribute "login" as "Handle" + + + activemodel: + errors: + template: + header: + one: "Não foi possível guardar {{model}}: 1 erro" + other: "Não foi possível guardar {{model}}: {{count}} erros" + # The variable :count is also available + body: "Por favor, verifique os seguintes campos:" \ No newline at end of file