|
| 1 | +/*! |
| 2 | + * jQuery QueryBuilder 2.2.0 |
| 3 | + * Locale: Portuguese (pr-PT) |
| 4 | + * Author: Miguel Guerreiro, [email protected] |
| 5 | + * Licensed under MIT (http://opensource.org/licenses/MIT) |
| 6 | + */ |
| 7 | + |
| 8 | +(function(root, factory) { |
| 9 | + if (typeof define === 'function' && define.amd) { |
| 10 | + define(['jquery', 'query-builder'], factory); |
| 11 | + } |
| 12 | + else { |
| 13 | + factory(root.jQuery); |
| 14 | + } |
| 15 | +}(this, function($) { |
| 16 | +"use strict"; |
| 17 | + |
| 18 | +var QueryBuilder = $.fn.queryBuilder; |
| 19 | + |
| 20 | +QueryBuilder.regional['pt-PT'] = { |
| 21 | + "__locale": "Portuguese (pt-PT)", |
| 22 | + "__author": "Miguel Guerreiro, [email protected]", |
| 23 | + "add_rule": "Nova Regra", |
| 24 | + "add_group": "Novo Grupo", |
| 25 | + "delete_rule": "Excluir", |
| 26 | + "delete_group": "Excluir", |
| 27 | + "conditions": { |
| 28 | + "AND": "E", |
| 29 | + "OR": "OU" |
| 30 | + }, |
| 31 | + "operators": { |
| 32 | + "equal": "Igual a", |
| 33 | + "not_equal": "Diferente de", |
| 34 | + "in": "Contido", |
| 35 | + "not_in": "Não contido", |
| 36 | + "less": "Menor que", |
| 37 | + "less_or_equal": "Menor ou igual a", |
| 38 | + "greater": "Maior que", |
| 39 | + "greater_or_equal": "Maior ou igual que", |
| 40 | + "between": "Entre", |
| 41 | + "begins_with": "Começar por", |
| 42 | + "not_begins_with": "Não a começar por", |
| 43 | + "contains": "Contém", |
| 44 | + "not_contains": "Não contém", |
| 45 | + "ends_with": "Terminando com", |
| 46 | + "not_ends_with": "Terminando sem", |
| 47 | + "is_empty": "É vazio", |
| 48 | + "is_not_empty": "Não é vazio", |
| 49 | + "is_null": "É nulo", |
| 50 | + "is_not_null": "Não é nulo" |
| 51 | + }, |
| 52 | + "errors": { |
| 53 | + "no_filter": "Nenhum filtro selecionado", |
| 54 | + "empty_group": "O grupo está vazio", |
| 55 | + "radio_empty": "Nenhum valor selecionado", |
| 56 | + "checkbox_empty": "Nenhum valor selecionado", |
| 57 | + "select_empty": "Nenhum valor selecionado", |
| 58 | + "string_empty": "Valor vazio", |
| 59 | + "string_exceed_min_length": "É necessário conter pelo menos {0} caracteres", |
| 60 | + "string_exceed_max_length": "É necessário conter mais de {0} caracteres", |
| 61 | + "string_invalid_format": "Formato inválido ({0})", |
| 62 | + "number_nan": "Não é um número", |
| 63 | + "number_not_integer": "Não é um número inteiro", |
| 64 | + "number_not_double": "Não é um número real", |
| 65 | + "number_exceed_min": "É necessário ser maior que {0}", |
| 66 | + "number_exceed_max": "É necessário ser menor que {0}", |
| 67 | + "number_wrong_step": "É necessário ser múltiplo de {0}", |
| 68 | + "datetime_invalid": "Formato de data inválido ({0})", |
| 69 | + "datetime_exceed_min": "É necessário ser superior a {0}", |
| 70 | + "datetime_exceed_max": "É necessário ser inferior a {0}" |
| 71 | + } |
| 72 | +}; |
| 73 | + |
| 74 | +QueryBuilder.defaults({ lang_code: 'pt-PT' }); |
| 75 | +})); |
0 commit comments