-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
489 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "jQuery-QueryBuilder", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"authors": [{ | ||
"name": "Damien \"Mistic\" Sorel", | ||
"email": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "mistic100/jquery-querybuilder", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"authors": [{ | ||
"name": "Damien \"Mistic\" Sorel", | ||
"email": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* jQuery QueryBuilder 2.2.0 | ||
* jQuery QueryBuilder 2.2.1 | ||
* Locale: Danish (da) | ||
* Author: Jna Borup Coyle, [email protected] | ||
* Licensed under MIT (http://opensource.org/licenses/MIT) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* jQuery QueryBuilder 2.2.0 | ||
* jQuery QueryBuilder 2.2.1 | ||
* Locale: Farsi (fa-ir) | ||
* Author: Behzad Sedighzade, [email protected] | ||
* Licensed under MIT (http://opensource.org/licenses/MIT) | ||
|
@@ -17,7 +17,7 @@ | |
|
||
var QueryBuilder = $.fn.queryBuilder; | ||
|
||
QueryBuilder.regional['fa-IR'] = { | ||
QueryBuilder.regional['fa-ir'] = { | ||
"__locale": "Farsi (fa-ir)", | ||
"__author": "Behzad Sedighzade, [email protected]", | ||
"add_rule": "افزودن قاعده", | ||
|
@@ -74,5 +74,5 @@ QueryBuilder.regional['fa-IR'] = { | |
} | ||
}; | ||
|
||
QueryBuilder.defaults({ lang_code: 'fa-IR' }); | ||
QueryBuilder.defaults({ lang_code: 'fa-ir' }); | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* jQuery QueryBuilder 2.2.0 | ||
* jQuery QueryBuilder 2.2.1 | ||
* Locale: Norwegian (no) | ||
* Author: Jna Borup Coyle, [email protected] | ||
* Licensed under MIT (http://opensource.org/licenses/MIT) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* jQuery QueryBuilder 2.2.0 | ||
* jQuery QueryBuilder 2.2.1 | ||
* Locale: Brazilian Portuguese (pr-BR) | ||
* Author: Leandro Gehlen, [email protected] | ||
* Licensed under MIT (http://opensource.org/licenses/MIT) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/*! | ||
* jQuery QueryBuilder 2.2.1 | ||
* Locale: Portuguese (pt-PT) | ||
* Author: Miguel Guerreiro, [email protected] | ||
* Licensed under MIT (http://opensource.org/licenses/MIT) | ||
*/ | ||
|
||
(function(root, factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
define(['jquery', 'query-builder'], factory); | ||
} | ||
else { | ||
factory(root.jQuery); | ||
} | ||
}(this, function($) { | ||
"use strict"; | ||
|
||
var QueryBuilder = $.fn.queryBuilder; | ||
|
||
QueryBuilder.regional['pt-PT'] = { | ||
"__locale": "Portuguese (pt-PT)", | ||
"__author": "Miguel Guerreiro, [email protected]", | ||
"add_rule": "Nova Regra", | ||
"add_group": "Novo Grupo", | ||
"delete_rule": "Excluir", | ||
"delete_group": "Excluir", | ||
"conditions": { | ||
"AND": "E", | ||
"OR": "OU" | ||
}, | ||
"operators": { | ||
"equal": "Igual a", | ||
"not_equal": "Diferente de", | ||
"in": "Contido", | ||
"not_in": "Não contido", | ||
"less": "Menor que", | ||
"less_or_equal": "Menor ou igual a", | ||
"greater": "Maior que", | ||
"greater_or_equal": "Maior ou igual que", | ||
"between": "Entre", | ||
"begins_with": "Começar por", | ||
"not_begins_with": "Não a começar por", | ||
"contains": "Contém", | ||
"not_contains": "Não contém", | ||
"ends_with": "Terminando com", | ||
"not_ends_with": "Terminando sem", | ||
"is_empty": "É vazio", | ||
"is_not_empty": "Não é vazio", | ||
"is_null": "É nulo", | ||
"is_not_null": "Não é nulo" | ||
}, | ||
"errors": { | ||
"no_filter": "Nenhum filtro selecionado", | ||
"empty_group": "O grupo está vazio", | ||
"radio_empty": "Nenhum valor selecionado", | ||
"checkbox_empty": "Nenhum valor selecionado", | ||
"select_empty": "Nenhum valor selecionado", | ||
"string_empty": "Valor vazio", | ||
"string_exceed_min_length": "É necessário conter pelo menos {0} caracteres", | ||
"string_exceed_max_length": "É necessário conter mais de {0} caracteres", | ||
"string_invalid_format": "Formato inválido ({0})", | ||
"number_nan": "Não é um número", | ||
"number_not_integer": "Não é um número inteiro", | ||
"number_not_double": "Não é um número real", | ||
"number_exceed_min": "É necessário ser maior que {0}", | ||
"number_exceed_max": "É necessário ser menor que {0}", | ||
"number_wrong_step": "É necessário ser múltiplo de {0}", | ||
"datetime_invalid": "Formato de data inválido ({0})", | ||
"datetime_exceed_min": "É necessário ser superior a {0}", | ||
"datetime_exceed_max": "É necessário ser inferior a {0}" | ||
} | ||
}; | ||
|
||
QueryBuilder.defaults({ lang_code: 'pt-PT' }); | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.