Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extend french translation for filter cells operators #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions lang/kendo.fr-CA.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,42 @@ kendo.ui.FilterMenu.prototype.options.operators =
/***************************************************************************/
});

kendo.ui.FilterCell.prototype.options.operators =
$.extend(kendo.ui.FilterCell.prototype.options.operators, {

/* FILTER CELLS OPERATORS (for each supported data type)
****************************************************************************/
string: {
eq: "Est égal à",
neq: "N'est pas égal à",
startswith: "Commence par",
contains: "Contient",
doesnotcontain: "Ne contient pas",
endswith: "Fini par"
},
number: {
eq: "Est égal à",
neq: "N'est pas égal à",
gte: "Est plus grand ou égal à",
gt: "Est plus grand que",
lte: "Est inférieur ou égal à",
lt: "Est inférieur que"
},
date: {
eq: "Est le ",
neq: "N'est pas le",
gte: "Est après ou le",
gt: "Est après le",
lte: "Est avant ou le",
lt: "Est avant le"
},
enums: {
eq: "Est égal à",
neq: "N'est pas égal à",
}
/***************************************************************************/
});

kendo.ui.Pager.prototype.options.messages =
$.extend(kendo.ui.Pager.prototype.options.messages, {
display: "{0} - {1} de {2} items",
Expand Down
36 changes: 36 additions & 0 deletions lang/kendo.fr-FR.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,42 @@ kendo.ui.FilterMenu.prototype.options.operators =
/***************************************************************************/
});

kendo.ui.FilterCell.prototype.options.operators =
$.extend(kendo.ui.FilterCell.prototype.options.operators, {

/* FILTER CELLS OPERATORS (for each supported data type)
****************************************************************************/
string: {
eq: "Est égal à",
neq: "N'est pas égal à",
startswith: "Commence par",
contains: "Contient",
doesnotcontain: "Ne contient pas",
endswith: "Fini par"
},
number: {
eq: "Est égal à",
neq: "N'est pas égal à",
gte: "Est plus grand ou égal à",
gt: "Est plus grand que",
lte: "Est inférieur ou égal à",
lt: "Est inférieur que"
},
date: {
eq: "Est le ",
neq: "N'est pas le",
gte: "Est après ou le",
gt: "Est après le",
lte: "Est avant ou le",
lt: "Est avant le"
},
enums: {
eq: "Est égal à",
neq: "N'est pas égal à",
}
/***************************************************************************/
});

kendo.ui.Pager.prototype.options.messages =
$.extend(kendo.ui.Pager.prototype.options.messages, {

Expand Down