@fto-consult/common
Version:
Un ensemble de bibliothèques et d'utilistaires communs pour le développement d'applications javascript
62 lines (56 loc) • 2.25 kB
JavaScript
// Copyright 2022 @fto-consult/Boris Fouomene. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import i18n from "$i18n";
i18n.dictionary({
fr : {
filter_regex_equals : 'Egal à',
filter_regex_contains : 'Contient',
filter_regex_notcontains : 'Ne contient pas',
filter_regex_notequals : 'Différent de',
filter_regex_startswith : 'Commence par',
filter_regex_endswith : 'Se termine par',
filter_equals : "Egal à ",
filter_notequals : "Différent de",
filter_greater_than_or_equals : "Supérieur où égal ",
filter_greater_than : "Supérieur à",
filter_less_than_or_equals : "Inférieur où égal",
filter_less_than : "Inférieur à",
filter_in : "Est inc ds la liste",
filter_not_in : "N\'est pas inc ds la liste",
filter_and : "Et",
filter_or : "Ou",
filter_yesterday : "Hier",
filter_today:"Aujourd'hui",
filter_prevWeek:"Semaine passée",
filter_week:'Cette semaine',
filter_month:'Ce mois',
filter_period:"Période",
filter_between : "Compris entre",
},
en : {
filter_regex_equals : 'Equals to',
filter_regex_contains : 'Contains',
filter_regex_notcontains : 'Do not contains',
filter_regex_notequals : 'Different to',
filter_regex_startswith : 'Starts with',
filter_regex_endswith : 'Ends with',
filter_equals : "Equals to",
filter_notequals : "Not equals to",
filter_greater_than_or_equals : "Greater or equals than",
filter_greater_than : "Greater than",
filter_less_than_or_equals : "Less or equals than",
filter_less_than : "Less than",
filter_in : "In",
filter_not_in : "Not in",
filter_and : "And",
filter_or : "Or",
filter_yesterday : "Yesterday",
filter_today:"Today",
filter_prevWeek:"Prev week",
filter_week:'This Week',
filter_month:'This month',
filter_period:"Period",
filter_between : "Between",
}
})