- Replaced color picker form control with a more robust version.

This commit is contained in:
JT Smith 2007-07-09 09:03:56 +00:00
parent 6fe068e42d
commit 6e0470771e
1193 changed files with 342 additions and 223 deletions

View file

@ -0,0 +1,175 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Danish translation
* By JohnF
* 04-09-2007, 05:28 AM
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Henter...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} markerede rækker";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Luk denne fane";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Værdien i dette felt er ikke tilladt";
}
Date.monthNames = [
"Januar",
"Februar",
"Marts",
"April",
"Maj",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"December"
];
Date.dayNames = [
"Søndag",
"Mandag",
"Tirsdag",
"Onsdag",
"Torsdag",
"Fredag",
"Lørdag"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Fortryd",
yes : "Ja",
no : "Nej"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "I dag",
minText : "Denne dato er før den tidligst tilladte",
maxText : "Denne dato er senere end den senest tilladte",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Næste måned (Ctrl + højre piltast)',
prevText : 'Forrige måned (Ctrl + venstre piltast)',
monthYearText : 'Vælg en måned (Ctrl + op/ned pil for at ændre årstal)',
todayTip : "{0} (mellemrum)",
format : "d/m/y",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Side",
afterPageText : "af {0}",
firstText : "Første side",
prevText : "Forrige side",
nextText : "Næste side",
lastText : "Sidste side",
refreshText : "Opfrisk",
displayMsg : "Viser {0} - {1} af {2}",
emptyMsg : 'Der er ingen data at vise'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Minimum længden for dette felt er {0}",
maxLengthText : "Maksimum længden for dette felt er {0}",
blankText : "Dette felt skal udfyldes",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Mindste-værdien for dette felt er {0}",
maxText : "Maksimum-værdien for dette felt er {0}",
nanText : "{0} er ikke et tilladt nummer"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Inaktiveret",
disabledDatesText : "Inaktiveret",
minText : "Datoen i dette felt skal være efter {0}",
maxText : "Datoen i dette felt skal være før {0}",
invalidText : "{0} er ikke en tilladt dato - datoer skal angives i formatet {1}",
format : "d/m/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Henter...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Dette felt skal være en email adresse i formatet "navn@domæne.dk"',
urlText : 'Dette felt skal være et link (URL) i formatet "http:/'+'/www.domæne.dk"',
alphaText : 'Dette felt kan kun indeholde bogstaver og "_" (understregning)',
alphanumText : 'Dette felt kan kun indeholde bogstaver, tal og "_" (understregning)'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sortér stigende",
sortDescText : "Sortér faldende",
lockText : "Lås kolonne",
unlockText : "Fjern lås fra kolonne",
columnsText : "Kolonner"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Navn",
valueText : "Værdi",
dateFormat : "d/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Træk for at ændre størrelsen.",
collapsibleSplitTip : "Træk for at ændre størrelsen. Dobbelt-klik for at skjule."
});
}

View file

@ -0,0 +1,174 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* German translation
* By schmidetzki and humpdi
* 04-07-2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">bertrage Daten ...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} Zeile(n) ausgewlt";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Diesen Tab schlieen";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Der Wert des Feldes ist nicht korrekt";
}
Date.monthNames = [
"Januar",
"Februar",
"Mrz",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Dezember"
];
Date.dayNames = [
"Sonntag",
"Montag",
"Dienstag",
"Mittwoch",
"Donnerstag",
"Fritag",
"Samstag"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Abbrechen",
yes : "Ja",
no : "Nein"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d.m.Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Heute",
minText : "Dieses Datum liegt von dem erstmglichen Datum",
maxText : "Dieses Datum liegt nach dem letztmglichen Datum",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Nchster Monat (Strg/Control + Rechts)',
prevText : 'Vorheriger Monat (Strg/Control + Links)',
monthYearText : 'Monat auswhlen (Strg/Control + Hoch/Runter, um ein Jahr auszuwhlen)',
todayTip : "Heute ({0}) (Leertaste)",
format : "d.m.Y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Seite",
afterPageText : "von {0}",
firstText : "Erste Seite",
prevText : "vorherige Seite",
nextText : "nchste Siete",
lastText : "letzte Seite",
refreshText : "Aktualisieren",
displayMsg : "Anzeige Eintrag {0} - {1} von {2}",
emptyMsg : 'Keine Daten vorhanden'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Bitte geben Sie mindestens {0} Zeichen ein",
maxLengthText : "Bitte geben Sie maximal {0} Zeichen ein",
blankText : "Dieses Feld darf nich leer sein",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Der Mindestwert fr dieses Feld ist {0}",
maxText : "Der Maximalwert fr dieses Feld ist {0}",
nanText : "{0} ist keine Zahl"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "nicht erlaubt",
disabledDatesText : "nicht erlaubt",
minText : "Das Datum in diesem Feld mu nach dem {0} liegen",
maxText : "Das Datum in diesem Feld mu vor dem {0} liegen",
invalidText : "{0} ist kein valides Datum - es mu im Format {1} eingegeben werden",
format : "Tag.Monat.Jahr"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Lade Daten ...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Dieses Feld sollte eine E-Mail-Adresse enthalten. Format: "user@domain.com"',
urlText : 'Dieses Feld sollte eine URL enthalten. Format "http:/'+'/www.domain.com"',
alphaText : 'Dieses Feld darf zur Buchstaben enthalten und _',
alphanumText : 'Dieses Feld darf zur Buchstaben und Zahlen enthalten und _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Aufsteigend sortieren",
sortDescText : "Absteigend sortieren",
lockText : "Spalte sperren",
unlockText : "Spalte freigeben (entsperren)",
columnsText : "Spalten"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Name",
valueText : "Wert",
dateFormat : "d.m.Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Ziehen, um Gre zu ndern.",
collapsibleSplitTip : "Ziehen, um Gre zu ndern. Doppelklick um Panel auszublenden."
});
}

View file

@ -0,0 +1,179 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* List compiled by mystix on the extjs.com forums.
* Thank you Mystix!
*
* English Translations
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Loading...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} selected row(s)";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Close this tab";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "The value in this field is invalid";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Loading...";
}
Date.monthNames = [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
];
Date.dayNames = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Cancel",
yes : "Yes",
no : "No"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "m/d/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Today",
minText : "This date is before the minimum date",
maxText : "This date is after the maximum date",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Next Month (Control+Right)',
prevText : 'Previous Month (Control+Left)',
monthYearText : 'Choose a month (Control+Up/Down to move years)',
todayTip : "{0} (Spacebar)",
format : "m/d/y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Page",
afterPageText : "of {0}",
firstText : "First Page",
prevText : "Previous Page",
nextText : "Next Page",
lastText : "Last Page",
refreshText : "Refresh",
displayMsg : "Displaying {0} - {1} of {2}",
emptyMsg : 'No data to display'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "The minimum length for this field is {0}",
maxLengthText : "The maximum length for this field is {0}",
blankText : "This field is required",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "The minimum value for this field is {0}",
maxText : "The maximum value for this field is {0}",
nanText : "{0} is not a valid number"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Disabled",
disabledDatesText : "Disabled",
minText : "The date in this field must be after {0}",
maxText : "The date in this field must be before {0}",
invalidText : "{0} is not a valid date - it must be in the format {1}",
format : "m/d/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Loading...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'This field should be an e-mail address in the format "user@domain.com"',
urlText : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
alphaText : 'This field should only contain letters and _',
alphanumText : 'This field should only contain letters, numbers and _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sort Ascending",
sortDescText : "Sort Descending",
lockText : "Lock Column",
unlockText : "Unlock Column",
columnsText : "Columns"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Name",
valueText : "Value",
dateFormat : "m/j/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Drag to resize.",
collapsibleSplitTip : "Drag to resize. Double click to hide."
});
}

View file

@ -0,0 +1,174 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* France (Canadian) translation
* By BernardChhun
* 04-08-2007, 03:07 AM
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">En cours de chargement...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} ligne(s) sélectionné(s)";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Fermer cette onglet";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "La valeur de ce champ est invalide";
}
Date.monthNames = [
"Janvier",
"Février",
"Mars",
"Avril",
"Mai",
"Juin",
"Juillet",
"Août",
"Septembre",
"Octobre",
"Novembre",
"Décembre"
];
Date.dayNames = [
"Dimanche",
"Lundi",
"Mardi",
"Mercredi",
"Jeudi",
"Vendredi",
"Samedi"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Annuler",
yes : "Oui",
no : "Non"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Aujourd'hui",
minText : "Cette date est plus petite que la date minimum",
maxText : "Cette date est plus grande que la date maximum",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Prochain mois (CTRL+Fléche droite)',
prevText : 'Mois précédent (CTRL+Fléche gauche)',
monthYearText : 'Choissisez un mois (CTRL+Fléche haut ou bas pour changer d\'année.)',
todayTip : "{0} (Barre d'espace)",
format : "d/m/y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Page",
afterPageText : "de {0}",
firstText : "Première page",
prevText : "Page précédente",
nextText : "Prochaine page",
lastText : "Dernière page",
refreshText : "Recharger la page",
displayMsg : "Page courante {0} - {1} de {2}",
emptyMsg : 'Aucune donnée à afficher'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "La longueur minimum de ce champ est de {0} caractères",
maxLengthText : "La longueur maximum de ce champ est de {0} caractères",
blankText : "Ce champ est obligatoire",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "La valeur minimum de ce champ doit être de {0}",
maxText : "La valeur maximum de ce champ doit être de {0}",
nanText : "{0} n'est pas un nombre valide"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Désactivé",
disabledDatesText : "Désactivé",
minText : "La date de ce champ doit être avant le {0}",
maxText : "La date de ce champ doit être après le {0}",
invalidText : "{0} n'est pas une date valide - il doit être au format suivant: {1}",
format : "d/m/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "En cours de chargement...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Ce champ doit contenir un courriel et doit être sous ce format: "usager@domaine.com"',
urlText : 'Ce champ doit contenir une URL sous le format suivant: "http:/'+'/www.domaine.com"',
alphaText : 'Ce champ ne peut contenir que des lettres et le caractère souligné (_)',
alphanumText : 'Ce champ ne peut contenir que des caractères alphanumériques ainsi que le caractère souligné (_)'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Tri ascendant",
sortDescText : "Tri descendant",
lockText : "Verrouillé la colonne",
unlockText : "Déverrouillé la colonne",
columnsText : "Colonnes"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Propriété",
valueText : "Valeur",
dateFormat : "d/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Cliquer et glisser pour redimensionner le panneau.",
collapsibleSplitTip : "Cliquer et glisser pour redimensionner le panneau. Double-cliquer pour cacher le panneau."
});
}

View file

@ -0,0 +1,175 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Croatian translation
* By Ylodi (utf8 encoding)
* 10 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Učitavanje...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} odabranih redova";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Zatvori ovaj tab";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Vrijednost u ovom polju je neispravna";
}
Date.monthNames = [
"Siječanj",
"Veljača",
"Ožujak",
"Travanj",
"Svibanj",
"Lipanj",
"Srpanj",
"Kolovoz",
"Rujan",
"Listopad",
"Studeni",
"Prosinac"
];
Date.dayNames = [
"Nedelja",
"Ponedeljak",
"Utorak",
"Srijeda",
"Četvrtak",
"Petak",
"Subota"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "U redu",
cancel : "Odustani",
yes : "Da",
no : "Ne"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Danas",
minText : "Taj datum je prije najmanjeg datuma",
maxText : "Taj datum je poslije najvećeg datuma",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Slijedeći mjesec (Control+Desno)',
prevText : 'Prethodni mjesec (Control+Lijevo)',
monthYearText : 'Odaberite mjesec (Control+Gore/Dolje za promjenu godine)',
todayTip : "{0} (Razmaknica)",
format : "d/m/y",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Stranica",
afterPageText : "od {0}",
firstText : "Prva stranica",
prevText : "Prethodna stranica",
nextText : "Slijedeća stranica",
lastText : "Zadnja stranica",
refreshText : "Obnovi",
displayMsg : "Prikazujem {0} - {1} od {2}",
emptyMsg : 'Nema podataka za prikaz'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Minimalna dužina za ovo polje je {0}",
maxLengthText : "Maksimalna dužina za ovo polje je {0}",
blankText : "Ovo polje je obavezno",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Minimalna vrijednost za ovo polje je {0}",
maxText : "Maksimalna vrijednost za ovo polje je {0}",
nanText : "{0} is not a valid number"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Neaktivno",
disabledDatesText : "Neaktivno",
minText : "Datum u ovom polje mora biti poslije {0}",
maxText : "Datum u ovom polju mora biti prije {0}",
invalidText : "{0} nije ispravan datum - mora biti u obliku {1}",
format : "d/m/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Učitavanje...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Ovo polje treba biti e-mail adresa u obliku "korisnik@domena.com"',
urlText : 'Ovo polje treba biti URL u obliku "http:/'+'/www.domena.com"',
alphaText : 'Ovo polje treba sadržavati samo slova i znak _',
alphanumText : 'Ovo polje treba sadržavati samo slova, brojeve i znak _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sortiraj rastućim redoslijedom",
sortDescText : "Sortiraj padajućim redoslijedom",
lockText : "Zaključaj stupac",
unlockText : "Otključaj stupac",
columnsText : "Stupci"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Naziv",
valueText : "Vrijednost",
dateFormat : "j/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Povuci za promjenu veličine.",
collapsibleSplitTip : "Povuci za promjenu veličine. Dvostruki klik za skrivanje."
});
}

View file

@ -0,0 +1,180 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* List compiled by mystix on the extjs.com forums.
* Thank you Mystix!
*/
/*
* Hungarian translation
* By amon (utf-8 encoded)
* 14 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Betöltés...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} kiválasztott sor";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Fül bezárása";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "A mező tartalma érvénytelen";
}
Date.monthNames = [
"Január",
"Február",
"Március",
"Április",
"Május",
"Június",
"Július",
"Augusztus",
"Szeptember",
"Október",
"November",
"December"
];
Date.dayNames = [
"Vasárnap",
"Hétfő",
"Kedd",
"Szerda",
"Csütörtök",
"Péntek",
"Szombat"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Mégsem",
yes : "Igen",
no : "Nem"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "y.m.d");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Ma",
minText : "Ez a dátum korábbi a megengedettnél",
maxText : "Ez a dátum későbbi a megengedettnél",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Következő hónap (Control+Jobbra)',
prevText : 'Előző hónap (Control+Balra)',
monthYearText : 'Hónaőválasztás (Control+Fel/Le: év választás)',
todayTip : "{0} (Szóköz)",
format : "y.m.d",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Oldal",
afterPageText : "a {0}-ból/ből",
firstText : "Első oldal",
prevText : "Előző oldal",
nextText : "Következő",
lastText : "Utolsó oldal",
refreshText : "Frissít",
displayMsg : "{0} - {1} a {2}-ból/ből",
emptyMsg : 'Nincs megjeleníthető adat'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "A mező hossza minimum {0}",
maxLengthText : "A mező hossza maximum {0}",
blankText : "Kötelező mező",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "A mező minimum értéke {0} lehet",
maxText : "A mező maximum értéke {0} lehet",
nanText : "{0} nem értelmezhető számként"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Letiltva",
disabledDatesText : "Letiltva",
minText : "A dátum későbbi kell legyen {0}-nál/nél",
maxText : "A dátum korábbi kell legyen {0}-nál/nél",
invalidText : "{0} nem valódi dátum - a mező formátuma: {1}",
format : "y.m.d"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Betöltés...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'A mező tartalma e-mail cím lehet, formátum: "user@domain.com"',
urlText : 'A mező tartalma webcím lehet, formátum: "http:/'+'/www.domain.com"',
alphaText : 'A mező csak betűket (a-z) és aláhúzás (_) karaktert tartalmazhat.',
alphanumText : 'A mező csak betűket (a-z), számokat (0-9) és aláhúzás (_) karaktert tartalmazhat'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Növekvő rendezés",
sortDescText : "Csökkenő rendezés",
lockText : "Oszlop lezárás",
unlockText : "Oszlop felengedés",
columnsText : "Oszlopok"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Név",
valueText : "Érték",
dateFormat : "Y m j"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Húzás: átméretezés",
collapsibleSplitTip : "Húzás: átméretezés, duplaklikk: eltüntetés."
});
}

View file

@ -0,0 +1,175 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Italian translation
* By eric_void
* 04-10-2007, 11:25 AM
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Caricamento in corso...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} righe selezionate";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Chiudi pannello";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Valore del campo non valido";
}
Date.monthNames = [
"Gennaio",
"Febbraio",
"Marzo",
"Aprile",
"Maggio",
"Giugno",
"Luglio",
"Agosto",
"Settembre",
"Ottobre",
"Novembre",
"Dicembre"
];
Date.dayNames = [
"Domenica",
"Lunedi",
"Martedi",
"Mercoledi",
"Giovedi",
"Venerdi",
"Sabato"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Annulla",
yes : "Si",
no : "No"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Oggi",
minText : "Data precedente alla data minima",
maxText : "Data successiva alla data massima",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Mese successivo (Ctrl+Destra)',
prevText : 'Mese precedente (Ctrl+Sinistra)',
monthYearText : 'Scegli un mese (Ctrl+Su/Giu per cambiare anno)',
todayTip : "{0} (Barra spaziatrice)",
format : "d/m/y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Pagina",
afterPageText : "di {0}",
firstText : "Prima pagina",
prevText : "Pagina precedente",
nextText : "Pagina successiva",
lastText : "Ultima pagina",
refreshText : "Aggiorna",
displayMsg : "Vista {0} - {1} di {2}",
emptyMsg : 'Nessun dato da mostrare'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "La lunghezza minima del campo risulta {0}",
maxLengthText : "La lunghezza massima del campo risulta {0}",
blankText : "Campo obbligatorio",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Il valore minimo del campo risulta {0}",
maxText : "Il valore massimo del campo risulta {0}",
nanText : "{0} non &grave; un numero corretto"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Disabilitato",
disabledDatesText : "Disabilitato",
minText : "La data del campo deve essere successiva a {0}",
maxText : "La data del campo deve essere precedente a {0}",
invalidText : "{0} non &grave; una data valida. Deve essere nel formato {1}",
format : "d/m/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Caricamento in corso...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Il campo deve essere un indirizzo e-mail nel formato "user@domain.com"',
urlText : 'Il campo deve essere un indirizzo web nel formato "http:/'+'/www.domain.com"',
alphaText : 'Il campo deve contenere solo lettere e _',
alphanumText : 'Il campo deve contenere solo lettere, numeri e _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Ordinamento crescente",
sortDescText : "Ordinamento decrescente",
lockText : "Blocca colonna",
unlockText : "Sblocca colonna",
columnsText : "Colonne"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Nome",
valueText : "Valore",
dateFormat : "j/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Trascina per cambiare dimensioni.",
collapsibleSplitTip : "Trascina per cambiare dimensioni. Doppio click per nascondere."
});
}

View file

@ -0,0 +1,160 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Japanese translation
* By tyama
* 04-08-2007, 05:49 AM
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">読み込み中...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} 行選択";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "このタブを閉じる";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "フィールドの値が不正です。";
}
Date.monthNames = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月','11月','12月'];
Date.dayNames = [
"日",
"月",
"火",
"水",
"木",
"金",
"土"];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "キャンセル",
yes : "はい",
no : "いいえ"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "Y/m/d");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "今日",
minText : "選択した日付は最小値以下です。",
maxText : "選択した日付は最大値以上です。",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : '次月へ (コントロール+右)',
prevText : '前月へ (コントロール+左)',
monthYearText : '月選択 (コントロール+上/下で年移動)',
todayTip : "{0} (スペースキー)",
format : "Y/m/d"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "ページ",
afterPageText : "/ {0}",
firstText : "最初のページ",
prevText : "前のページ",
nextText : "次のページ",
lastText : "最後のページ",
refreshText : "更新",
displayMsg : "{2} 件中 {0} - {1} を表示",
emptyMsg : '表示するデータがありません。'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "このフィールドの最小値は {0} です。",
maxLengthText : "このフィールドの最大値は {0} です。",
blankText : "必須項目です。",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "このフィールドの最小値は {0} です。",
maxText : "このフィールドの最大値は {0} です。",
nanText : "{0} は数値ではありません。"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "無効",
disabledDatesText : "無効",
minText : "このフィールドの日付は、 {0} 以降の日付に設定してください。",
maxText : "このフィールドの日付は、 {0} 以前の日付に設定してください。",
invalidText : "{0} は間違った日付入力です。 - 入力形式は「{1}」です。",
format : "Y/m/d"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "読み込み中...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'メールアドレスを"user@domain.com"の形式で入力してください。',
urlText : 'URLを"http:/'+'/www.domain.com"の形式で入力してください。',
alphaText : '半角英字と"_"のみです。',
alphanumText : '半角英数と"_"のみです。'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "昇順",
sortDescText : "降順",
lockText : "カラムロック",
unlockText : "カラムロック解除",
columnsText : "Columns"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "名称",
valueText : "値",
dateFormat : "Y/m/d"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "ドラッグするとリサイズできます。",
collapsibleSplitTip : "ドラッグでリサイズ。 ダブルクリックで隠す。"
});
}

View file

@ -0,0 +1,178 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* Latvian Translations
* By salix 17 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Notiek ielāde...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} iezīmētu rindu";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Aizver šo zīmni";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Vērtība šajā laukā nav pareiza";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Ielādē...";
}
Date.monthNames = [
"Janvāris",
"Februāris",
"Marts",
"Aprīlis",
"Maijs",
"Jūnijs",
"Jūlijs",
"Augusts",
"Septembris",
"Oktobris",
"Novembris",
"Decembris"
];
Date.dayNames = [
"Svētdiena",
"Pirmdiena",
"Otrdiena",
"Trešdiena",
"Ceturtdiena",
"Piektdiena",
"Sestdiena"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "Labi",
cancel : "Atcelt",
yes : "Jā",
no : "Nē"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d.m.Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Šodiena",
minText : "Norādītais datums ir mazāks par minimālo datumu",
maxText : "Norādītais datums ir lielāks par maksimālo datumu",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Nākamais mēnesis (Control+pa labi)',
prevText : 'Iepriekšējais mēnesis (Control+pa kreisi)',
monthYearText : 'Mēneša izvēle (Control+uz augšu/uz leju lai pārslēgtu gadus)',
todayTip : "{0} (Tukšumzīme)",
format : "d.m.Y",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Lapa",
afterPageText : "no {0}",
firstText : "Pirmā lapa",
prevText : "iepriekšējā lapa",
nextText : "Nākamā lapa",
lastText : "Pēdējā lapa",
refreshText : "Atsvaidzināt",
displayMsg : "Rāda no {0} līdz {1} ierakstiem, kopā {2}",
emptyMsg : 'Nav datu, ko parādīt'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Minimālais garums šim laukam ir {0}",
maxLengthText : "Maksimālais garums šim laukam ir {0}",
blankText : "Šis ir obligāts lauks",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Minimālais garums šim laukam ir {0}",
maxText : "Maksimālais garums šim laukam ir {0}",
nanText : "{0} nav pareizs skaitlis"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Atspējots",
disabledDatesText : "Atspējots",
minText : "Datumam šajā laukā jābūt lielākam kā {0}",
maxText : "Datumam šajā laukā jābūt mazākam kā {0}",
invalidText : "{0} nav pareizs datums - tam jābūt šādā formātā: {1}",
format : "d.m.Y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Ielādē...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Šajā laukā jāieraksta e-pasta adrese formātā "lietotās@domēns.lv"',
urlText : 'Šajā laukā jāieraksta URL formātā "http:/'+'/www.domēns.lv"',
alphaText : 'Šis lauks drīkst saturēt tikai burtus un _ zīmi',
alphanumText : 'Šis lauks drīkst saturēt tikai burtus, ciparus un _ zīmi'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Kārtot pieaugošā secībā",
sortDescText : "Kārtot dilstošā secībā",
lockText : "Noslēgt kolonnu",
unlockText : "Atslēgt kolonnu",
columnsText : "Kolonnas"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Nosaukums",
valueText : "Vērtība",
dateFormat : "j.m.Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Velc, lai mainītu izmēru.",
collapsibleSplitTip : "Velc, lai mainītu izmēru. Dubultklikšķis noslēpj apgabalu."
});
}

View file

@ -0,0 +1,178 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Macedonia translation
* By PetarD petar.dimitrijevic@vorteksed.com.mk (utf8 encoding)
* 23 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Вчитувам...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} избрани редици";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Затвори tab";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Вредноста во ова поле е невалидна";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Вчитувам...";
}
Date.monthNames = [
"Јануари",
"Февруари",
"Март",
"Април",
"Мај",
"Јуни",
"Јули",
"Август",
"Септември",
"Октомври",
"Ноември",
"Декември"
];
Date.dayNames = [
"Недела",
"Понеделник",
"Вторник",
"Среда",
"Четврток",
"Петок",
"Сабота"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "Потврди",
cancel : "Поништи",
yes : "Да",
no : "Не"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d.m.y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Денеска",
minText : "Овој датум е пред најмалиот датум",
maxText : "Овој датум е пред најголемиот датум",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Следен месец (Control+Стрелка десно)',
prevText : 'Претходен месец (Control+Стрелка лево)',
monthYearText : 'Изберете месец (Control+Стрелка горе/Стрелка десно за менување година)',
todayTip : "{0} (Spacebar)",
format : "d.m.y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Страница",
afterPageText : "од {0}",
firstText : "Прва Страница",
prevText : "Претходна Страница",
nextText : "Следна Страница",
lastText : "Последна Страница",
refreshText : "Освежи",
displayMsg : "Прикажувам {0} - {1} од {2}",
emptyMsg : 'Нема податоци за приказ'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Минималната должина за ова поле е {0}",
maxLengthText : "Максималната должина за ова поле е {0}",
blankText : "Податоците во ова поле се потребни",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Минималната вредност за ова поле е {0}",
maxText : "Максималната вредност за ова поле е {0}",
nanText : "{0} не е валиден број"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Неактивно",
disabledDatesText : "Неактивно",
minText : "Датумот во ова поле мора да биде пред {0}",
maxText : "Датумот во ова поле мора да биде по {0}",
invalidText : "{0} не е валиден датум - мора да биде во формат {1}",
format : "d.m.y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Вчитувам...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Ова поле треба да биде e-mail адреса во формат "user@domain.com"',
urlText : 'Ова поле треба да биде URL во формат "http:/'+'/www.domain.com"',
alphaText : 'Ова поле треба да содржи само букви и _',
alphanumText : 'Ова поле треба да содржи само букви, бројки и _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Сортирај Растечки",
sortDescText : "Сортирај Опаѓачки",
lockText : "Заклучи Колона",
unlockText : "Отклучи колона",
columnsText : "Колони"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Име",
valueText : "Вредност",
dateFormat : "m.d.Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Повлечете за менување на големината.",
collapsibleSplitTip : "Повлечете за менување на големината. Дупли клик за криење."
});
}

View file

@ -0,0 +1,185 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* List compiled by mystix on the extjs.com forums.
* Thank you Mystix!
*
* Dutch Translations
* by Bas van Oostveen (04 April 2007)
*/
/* Ext Core translations */
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Bezig met laden...</div>';
/* Ext single string translations */
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} geselecteerde rij(en)";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Sluit dit tabblad";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "De waarde in dit veld is onjuist";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Bezig met laden...";
}
/* Javascript month and days translations */
Date.monthNames = [
"Januari",
"Februari",
"Maart",
"April",
"Mei",
"Juni",
"Juli",
"Augustus",
"September",
"Oktober",
"November",
"December"
];
Date.dayNames = [
"Zondag",
"Maandag",
"Dinsdag",
"Woensdag",
"Donderdag",
"Vrijdag",
"Zaterdag"
];
/* Ext components translations */
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Annuleren",
yes : "Ja",
no : "Nee"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "y/m/d");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Vandaag",
minText : "Deze datum is eerder dan de minimum datum",
maxText : "Deze datum is later dan de maximum datum",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Volgende Maand (Control+Rechts)',
prevText : 'Vorige Maand (Control+Links)',
monthYearText : 'Kies een maand (Control+Omhoog/Beneden volgend/vorige jaar)',
todayTip : "{0} (Spatie)",
format : "d/m/y",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Pagina",
afterPageText : "van {0}",
firstText : "Eerste Pagina",
prevText : "Vorige Pagina",
nextText : "Volgende Pagina",
lastText : "Laatste Pagina",
refreshText : "Ververs",
displayMsg : "Getoond {0} - {1} of {2}",
emptyMsg : 'Geen gegeven om weer te geven'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "De minimale lengte voor dit veld is {0}",
maxLengthText : "De maximale lengte voor dit veld is {0}",
blankText : "Dit veld is verplicht",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "De minimale lengte voor dit veld is {0}",
maxText : "De maximale lengte voor dit veld is {0}",
nanText : "{0} is geen geldig getal"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Uitgeschakeld",
disabledDatesText : "Uitgeschakeld",
minText : "De datum in dit veld moet na {0} liggen",
maxText : "De datum in dit veld moet voor {0} liggen",
invalidText : "{0} is geen geldige datum - formaat voor datum is {1}",
format : "d/m/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Bezig met laden...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Dit veld moet een e-mail adres in het formaat "gebruiker@domein.nl"',
urlText : 'Dit veld moet een URL zijn in het formaat "http:/'+'/www.domein.nl"',
alphaText : 'Dit veld mag alleen letters en _ bevatten',
alphanumText : 'Dit veld mag alleen letters, cijfers en _ bevatten'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sorteer Oplopend",
sortDescText : "Sorteer Aflopend",
lockText : "Kolom Vastzetten",
unlockText : "Kolom Vrijgeven",
columnsText : "Kolommen"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Naam",
valueText : "Waarde",
dateFormat : "Y/m/j"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Sleep om grote aan te passen.",
collapsibleSplitTip : "Sleep om grote aan te passen. Dubbel klikken om te verbergen."
});
}

View file

@ -0,0 +1,173 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Norwegian translation
* By grEvenX 16-April-2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Laster...</div>';
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} markerte rader";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Lukk denne fanen";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Verdien i dette felter er ugyldig";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Laster...";
}
Date.monthNames = [
"Januar",
"Februar",
"Mars",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Desember"
];
Date.dayNames = [
"Søndag",
"Mandag",
"Tirsdag",
"Onsdag",
"Torsdag",
"Fredag",
"Lørdag"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Avbryt",
yes : "Ja",
no : "Nei"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "I dag",
minText : "Denne datoen er tidligere enn den tidligste tillatte",
maxText : "Denne datoen er senere enn den seneste tillatte",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Neste måned (Control+Pil Høyre)',
prevText : 'Forrige måned (Control+Pil Venstre)',
monthYearText : 'Velg en måned (Control+Pil Opp/Ned for å skifte år)',
todayTip : "{0} (mellomrom)",
format : "d/m/y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Side",
afterPageText : "av {0}",
firstText : "Første side",
prevText : "Forrige side",
nextText : "Neste side",
lastText : "Siste side",
refreshText : "Oppdater",
displayMsg : "Viser {0} - {1} of {2}",
emptyMsg : 'Ingen data å vise'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Den minste lengden for dette feltet er {0}",
maxLengthText : "Den største lengden for dette feltet er {0}",
blankText : "Dette feltet er påkrevd",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Den minste verdien for dette feltet er {0}",
maxText : "Den største verdien for dette feltet er {0}",
nanText : "{0} er ikke et gyldig nummer"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Deaktivert",
disabledDatesText : "Deaktivert",
minText : "Datoen i dette feltet må være etter {0}",
maxText : "Datoen i dette feltet må være før {0}",
invalidText : "{0} is not a valid date - it must be in the format {1}",
format : "m/d/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Laster...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Dette feltet skal være en epost adresse i formatet "user@domain.com"',
urlText : 'Dette feltet skal være en link (URL) i formatet "http:/'+'/www.domain.com"',
alphaText : 'Dette feltet skal kun inneholde bokstaver og _',
alphanumText : 'Dette feltet skal kun inneholde bokstaver, tall og _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sorter stigende",
sortDescText : "Sorter synkende",
lockText : "Lås kolonne",
unlockText : "Lås opp kolonne",
columnsText : "Kolonner"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Navn",
valueText : "Verdi",
dateFormat : "d/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Dra for å endre størrelse.",
collapsibleSplitTip : "Dra for å endre størrelse, dobbelklikk for å skjule."
});
}

View file

@ -0,0 +1,179 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* Polish Translations
* By vbert 17-April-2007
* Encoding: utf-8
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Wczytywanie danych...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} wybrano wiersze(y)";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Zamknij zakładkę";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Wartość tego pola jest niewłaściwa";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Wczytywanie danych...";
}
Date.monthNames = [
"Styczeń",
"Luty",
"Marzec",
"Kwiecień",
"Maj",
"Czerwiec",
"Lipiec",
"Sierpień",
"Wrzesień",
"Październik",
"Listopad",
"Grudzień"
];
Date.dayNames = [
"Niedziela",
"Poniedziałek",
"Wtorek",
"Środa",
"Czwartek",
"Piątek",
"Sobota"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Anuluj",
yes : "Tak",
no : "Nie"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "Y-m-d");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
startDay : 1,
todayText : "Dzisiaj",
minText : "Data jest wcześniejsza od daty minimalnej",
maxText : "Data jest późniejsza od daty maksymalnej",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : "Następny miesiąc (Control+StrzałkaWPrawo)",
prevText : "Poprzedni miesiąc (Control+StrzałkaWLewo)",
monthYearText : "Wybierz miesiąc (Control+Up/Down aby zmienić rok)",
todayTip : "{0} (Spacja)",
format : "Y-m-d"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Strona",
afterPageText : "z {0}",
firstText : "Pierwsza strona",
prevText : "Poprzednia strona",
nextText : "Następna strona",
lastText : "Ostatnia strona",
refreshText : "Odśwież",
displayMsg : "Wyświetlono {0} - {1} z {2}",
emptyMsg : "Brak danych do wyświetlenia"
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Minimalna ilość znaków dla tego pola to {0}",
maxLengthText : "Maksymalna ilość znaków dla tego pola to {0}",
blankText : "To pole jest wymagane",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Minimalna wartość dla tego pola to {0}",
maxText : "Maksymalna wartość dla tego pola to {0}",
nanText : "{0} to nie jest właściwa wartość"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Wyłączony",
disabledDatesText : "Wyłączony",
minText : "Data w tym polu musi być późniejsza od {0}",
maxText : "Data w tym polu musi być wcześniejsza od {0}",
invalidText : "{0} to nie jest prawidłowa data - prawidłowy format daty {1}",
format : "Y-m-d"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Wczytuję...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'To pole wymaga podania adresu e-mail w formacie: "nazwa@domena.pl"',
urlText : 'To pole wymaga podania adresu strony www w formacie: "http:/'+'/www.domena.pl"',
alphaText : 'To pole wymaga podania tylko liter i _',
alphanumText : 'To pole wymaga podania tylko liter, cyfr i _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sortuj rosnąco",
sortDescText : "Sortuj malejąco",
lockText : "Zablokuj kolumnę",
unlockText : "Odblokuj kolumnę",
columnsText : "Kolumny"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Nazwa",
valueText : "Wartość",
dateFormat : "Y-m-d"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Przeciągnij aby zmienić rozmiar.",
collapsibleSplitTip : "Przeciągnij aby zmienić rozmiar. Kliknij dwukrotnie aby ukryć."
});
}

View file

@ -0,0 +1,173 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Portuguese/Brazil Translation by Weber Souza
* 08 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Carregando...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} linha(s) selecionada(s)";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Fechar Regio";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "O valor para este campo invlido";
}
Date.monthNames = [
"Janeiro",
"Fevereiro",
"Maro",
"Abril",
"Maio",
"Junho",
"Julho",
"Agosto",
"Setembro",
"Outubro",
"Novembro",
"Dezembro"
];
Date.dayNames = [
"Domingo",
"Segunda",
"Tera",
"Quarta",
"Quinta",
"Sexta",
"Sbado"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Cancelar",
yes : "Sim",
no : "No"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "m/d/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Hoje",
minText : "Esta data anterior a menor data",
maxText : "Esta data posterior a maior data",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Prximo Ms (Control+Direito)',
prevText : 'Previous Month (Control+Esquerdo)',
monthYearText : 'Choose a month (Control+Cima/Baixo para mover entre os anos)',
todayTip : "{0} (Espao)",
format : "m/d/y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Pgina",
afterPageText : "de {0}",
firstText : "Primeira Pgina",
prevText : "Pgina Anterior",
nextText : "Prxima Pgina",
lastText : "ltima Pgina",
refreshText : "Atualizar Listagem",
displayMsg : "<b>{0} a {1} de {2} registro(s)</b>",
emptyMsg : 'Sem registros para exibir'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "O tamanho mnimo permitido para este campo {0}",
maxLengthText : "O tamanho mximo para este campo {0}",
blankText : "Este campo obrigatrio, favor preencher.",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "O valor mnimo para este campo {0}",
maxText : "O valor mximo para este campo {0}",
nanText : "{0} no um nmero vlido"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Desabilitado",
disabledDatesText : "Desabilitado",
minText : "A data deste campo deve ser posterior a {0}",
maxText : "A data deste campo deve ser anterior a {0}",
invalidText : "{0} no uma data vlida - deve ser informado no formato {1}",
format : "m/d/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Carregando...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Este campo deve ser um endereo de e-mail vlido no formado "usuario@dominio.com"',
urlText : 'Este campo deve ser uma URL no formato "http:/'+'/www.dominio.com"',
alphaText : 'Este campo deve conter apenas letras e _',
alphanumText : 'Este campo devve conter apenas letras, nmeros e _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Ordenar Ascendente",
sortDescText : "Ordenar Descendente",
lockText : "Bloquear Coluna",
unlockText : "Desbloquear Coluna",
columnsText : "Colunas"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Nome",
valueText : "Valor",
dateFormat : "m/j/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Arraste para redimencionar.",
collapsibleSplitTip : "Arraste para redimencionar. Duplo clique para esconder."
});
}

View file

@ -0,0 +1,177 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* Translation by Lucian Lature 04-24-2007
* Romanian Translations
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Încărcare...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} rând(uri) selectate";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Închide acest tab";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Valoarea acestui câmp este invalidă";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Încărcare...";
}
Date.monthNames = [
"Ianuarie",
"Februarie",
"Martie",
"Aprilie",
"Mai",
"Iunie",
"Iulie",
"August",
"Septembrie",
"Octombrie",
"Noiembrie",
"Decembrie"
];
Date.dayNames = [
"Duminică",
"Luni",
"Marţi",
"Miercuri",
"Joi",
"Vineri",
"Sâmbătă"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Renunţă",
yes : "Da",
no : "Nu"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d-m-Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Astăzi",
minText : "Această zi este înaintea datei de început",
maxText : "Această zi este după ultimul termen",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Următoarea lună (Control+Right)',
prevText : 'Luna anterioară (Control+Left)',
monthYearText : 'Alege o lună (Control+Up/Down pentru a parcurge anii)',
todayTip : "{0} (Spacebar)",
format : "d-m-y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Pagina",
afterPageText : "din {0}",
firstText : "Prima pagină",
prevText : "Pagina precedentă",
nextText : "Următoarea pagină",
lastText : "Ultima pagină",
refreshText : "Reîmprospătare",
displayMsg : "Afişează {0} - {1} din {2}",
emptyMsg : 'Nu sunt date de afişat'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Lungimea minimă pentru acest câmp este de {0}",
maxLengthText : "Lungimea maximă pentru acest câmp este {0}",
blankText : "Acest câmp este obligatoriu",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Valoarea minimă permisă a acestui câmp este {0}",
maxText : "Valaorea maximă permisă a acestui câmp este {0}",
nanText : "{0} nu este un număr valid"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Inactiv",
disabledDatesText : "Inactiv",
minText : "Data acestui câmp trebuie să fie după {0}",
maxText : "Data acestui câmp trebuie sa fie înainte de {0}",
invalidText : "{0} nu este o dată validă - trebuie să fie în formatul {1}",
format : "d-m-y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Încărcare...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Acest câmp trebuie să conţină o adresă de e-mail în formatul "user@domain.com"',
urlText : 'Acest câmp trebuie să conţină o adresă URL în formatul "http:/'+'/www.domain.com"',
alphaText : 'Acest câmp trebuie să conţină doar litere şi _',
alphanumText : 'Acest câmp trebuie să conţină doar litere, cifre şi _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sortare ascendentă",
sortDescText : "Sortare descendentă",
lockText : "Blochează coloana",
unlockText : "Deblochează coloana",
columnsText : "Coloane"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Nume",
valueText : "Valoare",
dateFormat : "m/j/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Trage pentru redimensionare.",
collapsibleSplitTip : "Trage pentru redimensionare. Dublu-click pentru ascundere."
});
}

View file

@ -0,0 +1,175 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Russian translation
* By Arikon (utf-8 encoding)
* 08 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Идет загрузка...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} выбранных строк";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Закрыть эту вкладку";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Значение в этом поле неверное";
}
Date.monthNames = [
"Январь",
"Февраль",
"Март",
"Апрель",
"Май",
"Июнь",
"Июль",
"Август",
"Сентябрь",
"Октябрь",
"Ноябрь",
"Декабрь"
];
Date.dayNames = [
"Воскресенье",
"Понедельник",
"Вторник",
"Среда",
"Четверг",
"Пятница",
"Суббота"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Отмена",
yes : "Да",
no : "Нет"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d.m.Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Сегодня",
minText : "Эта дата раньше минимальной даты",
maxText : "Эта дата позже максимальной даты",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Следующий месяц (Control+Вправо)',
prevText : 'Предыдущий месяц (Control+Влево)',
monthYearText : 'Выбор месяца (Control+Вверх/Вниз для выбора года)',
todayTip : "{0} (Пробел)",
format : "d.m.y",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Страница",
afterPageText : "из {0}",
firstText : "Первая страница",
prevText : "Предыдущая страница",
nextText : "Следующая страница",
lastText : "Последняя страница",
refreshText : "Обновить",
displayMsg : "Отображаются записи с {0} по {1}, всего {2}",
emptyMsg : 'Нет данных для отображения'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Минимальная длина этого поля {0}",
maxLengthText : "Максимальная длина этого поля {0}",
blankText : "Это поле обязательно для заполнения",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Значение этого поля не может быть меньше {0}",
maxText : "Значение этого поля не может быть больше {0}",
nanText : "{0} не является числом"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Не доступно",
disabledDatesText : "Не доступно",
minText : "Дата в этом поле должна быть позде {0}",
maxText : "Дата в этом поле должна быть раньше {0}",
invalidText : "{0} не является правильной датой - дата должна быть указана в формате {1}",
format : "d.m.y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Загрузка...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Это поле должно содержать адрес электронной почты в формате "user@domain.com"',
urlText : 'Это поле должно содержать URL в формате "http:/'+'/www.domain.com"',
alphaText : 'Это поле должно содержать только латинские буквы и символ подчеркивания "_"',
alphanumText : 'Это поле должно содержать только латинские буквы, цифры и символ подчеркивания "_"'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Сортировать по возрастанию",
sortDescText : "Сортировать по убыванию",
lockText : "Закрепить столбец",
unlockText : "Снять закрепление столбца",
columnsText : "Столбцы"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Название",
valueText : "Значение",
dateFormat : "j.m.Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Тяните для изменения размера.",
collapsibleSplitTip : "Тяните для изменения размера. Двойной щелчок спрячет панель."
});
}

View file

@ -0,0 +1,180 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* List compiled by mystix on the extjs.com forums.
* Thank you Mystix!
*/
/* Translation to Slovak by Michal Thomka
* 14 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Nahrvam...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} oznaench riadkov";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Zavrie tto zloku";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Hodnota v tomto poli je nesprvna";
}
Date.monthNames = [
"Janur",
"Februr",
"Marec",
"Aprl",
"Mj",
"Jn",
"Jl",
"August",
"September",
"Oktber",
"November",
"December"
];
Date.dayNames = [
"Nedea",
"Pondelok",
"Utorok",
"Streda",
"tvrtok",
"Piatok",
"Sobota"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Zrui",
yes : "no",
no : "Nie"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "m/d/R");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Dnes",
minText : "Tento dtum je men ako minimlny mon dtum",
maxText : "Tento dtum je v ako maximlny mon dtum",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'al Mesiac (Control+Doprava)',
prevText : 'Predch. Mesiac (Control+Doava)',
monthYearText : 'Vyberte Mesiac (Control+Hore/Dole pre posun rokov)',
todayTip : "{0} (Medzernk)",
format : "m/d/r"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Strana",
afterPageText : "z {0}",
firstText : "Prv Strana",
prevText : "Predch. Strana",
nextText : "alia Strana",
lastText : "Posledn strana",
refreshText : "Obnovi",
displayMsg : "Zobrazujem {0} - {1} z {2}",
emptyMsg : 'iadne dta'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Minimlna dka pre toto pole je {0}",
maxLengthText : "Maximlna dka pre toto pole je {0}",
blankText : "Toto pole je povinn",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Minimlna hodnota pre toto pole je {0}",
maxText : "Maximlna hodnota pre toto pole je {0}",
nanText : "{0} je nesprvne slo"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Zablokovan",
disabledDatesText : "Zablokovan",
minText : "Dtum v tomto poli mus by a po {0}",
maxText : "Dtum v tomto poli mus by pred {0}",
invalidText : "{0} nie je sprvny dtum - mus by vo formte {1}",
format : "m/d/r"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Nahrvam...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Toto pole mus by e-mailov adresa vo formte "user@domain.com"',
urlText : 'Toto pole mus by URL vo formte "http:/'+'/www.domain.com"',
alphaText : 'Toto poe moe obsahova iba psmen a znak _',
alphanumText : 'Toto poe moe obsahova iba psmen,sla a znak _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Zoradi vzostupne",
sortDescText : "Zoradi zostupne",
lockText : "Zamkn stpec",
unlockText : "Odomkn stpec",
columnsText : "Stpce"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Nzov",
valueText : "Hodnota",
dateFormat : "m/j/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Potiahnite pre zmenu rozmeru",
collapsibleSplitTip : "Potiahnite pre zmenu rozmeru. Dvojklikom schovte."
});
}

View file

@ -0,0 +1,173 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Español/Latinoamerica Translation by genius551v 04-08-2007
* Revised by efege, 2007-04-15.
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Cargando...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} fila(s) seleccionada(s)";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Cerrar esta pestaña";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "El valor en este campo es inválido";
}
Date.monthNames = [
"Enero",
"Febrero",
"Marzo",
"Abril",
"Mayo",
"Junio",
"Julio",
"Agosto",
"Septiembre",
"Octubre",
"Noviembre",
"Diciembre"
];
Date.dayNames = [
"Domingo",
"Lunes",
"Martes",
"Miércoles",
"Jueves",
"Viernes",
"Sábado"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "Aceptar",
cancel : "Cancelar",
yes : "Sí",
no : "No"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Hoy",
minText : "Esta fecha es anterior a la fecha mínima",
maxText : "Esta fecha es posterior a la fecha máxima",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Mes Siguiente (Control+Right)',
prevText : 'Mes Anterior (Control+Left)',
monthYearText : 'Seleccione un mes (Control+Up/Down para desplazar el año)',
todayTip : "{0} (Barra espaciadora)",
format : "d/m/Y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Página",
afterPageText : "de {0}",
firstText : "Primera página",
prevText : "Página anterior",
nextText : "Página siguiente",
lastText : "Última página",
refreshText : "Actualizar",
displayMsg : "Mostrando {0} - {1} de {2}",
emptyMsg : 'Sin datos para mostrar'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "El tamaño mínimo para este campo es de {0}",
maxLengthText : "El tamaño máximo para este campo es de {0}",
blankText : "Este campo es obligatorio",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "El valor mínimo para este campo es de {0}",
maxText : "El valor máximo para este campo es de {0}",
nanText : "{0} no es un número válido"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Deshabilitado",
disabledDatesText : "Deshabilitado",
minText : "La fecha para este campo debe ser posterior a {0}",
maxText : "La fecha para este campo debe ser anterior a {0}",
invalidText : "{0} no es una fecha válida - debe tener el formato {1}",
format : "d/m/Y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Cargando...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Este campo debe ser una dirección de correo electrónico con el formato "usuario@dominio.com"',
urlText : 'Este campo debe ser una URL con el formato "http:/'+'/www.dominio.com"',
alphaText : 'Este campo solo debe contener letras y _',
alphanumText : 'Este campo solo debe contener letras, números y _'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Ordenar en forma ascendente",
sortDescText : "Ordenar en forma descendente",
lockText : "Bloquear Columna",
unlockText : "Desbloquear Columna",
columnsText : "Columnas"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Nombre",
valueText : "Valor",
dateFormat : "j/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Arrastre para redimensionar.",
collapsibleSplitTip : "Arrastre para redimensionar. Doble clic para ocultar."
});
}

View file

@ -0,0 +1,179 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* Swedish translation (utf8-encoding)
* By Erik Andersson, Monator Technologies
* 24 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Laddar...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} markerade rad(er)";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Stäng denna tabb";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Värdet i detta fält är icke tillåtet";
}
if(Ext.LoadMask){
Ext.LoadMask.prototype.msg = "Laddar...";
}
Date.monthNames = [
"Januari",
"Februari",
"Mars",
"April",
"Maj",
"Juni",
"Juli",
"Augusti",
"September",
"Oktober",
"November",
"December"
];
Date.dayNames = [
"Söndag",
"Måndag",
"Tisdag",
"Onsdag",
"Torsdag",
"Fredag",
"Lördag"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "OK",
cancel : "Avbryt",
yes : "Ja",
no : "Nej"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "Y/m/d");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Idag",
minText : "Detta datum är före det tidigast tillåtna",
maxText : "Detta datum är efter det senast tillåtna",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Nästa Månad (Ctrl + höger piltangent)',
prevText : 'Föregående Månad (Ctrl + vänster piltangent)',
monthYearText : 'Välj en månad (Ctrl + Uppåt/Neråt pil för att ändra årtal)',
todayTip : "{0} (Mellanslag)",
format : "y/m/d",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Sida",
afterPageText : "av {0}",
firstText : "Första sidan",
prevText : "Föregående sida",
nextText : "Nästa sida",
lastText : "Sista sidan",
refreshText : "Uppdatera",
displayMsg : "Visar {0} - {1} av {2}",
emptyMsg : 'Det finns ingen data att visa'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Minsta tillåtna längden för detta fält är {0}",
maxLengthText : "Största tillåtna längden för detta fält är {0}",
blankText : "Detta fält är obligatoriskt",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Minsta tillåtna värdet för detta fält är {0}",
maxText : "Största tillåtna värdet för detta fält är {0}",
nanText : "{0} är inte ett tillåtet nummer"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Inaktiverad",
disabledDatesText : "Inaktiverad",
minText : "Datumet i detta fält måste vara efter {0}",
maxText : "Datumet i detta fält måste vara före {0}",
invalidText : "{0} är inte ett tillåtet datum - datum skall anges på formatet {1}",
format : "y/m/d"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Laddar...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Detta fält skall vara en e-post adress på formatet "user@domain.com"',
urlText : 'Detta fält skall vara en länk (URL) på formatet "http:/'+'/www.domain.com"',
alphaText : 'Detta fält får bara innehålla bokstäver och "_"',
alphanumText : 'Detta fält får bara innehålla bokstäver, nummer och "_"'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Sortera stigande",
sortDescText : "Sortera fallande",
lockText : "Lås kolumn",
unlockText : "Lås upp kolumn",
columnsText : "Kolumner"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Namn",
valueText : "Värde",
dateFormat : "Y/m/d"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Drag för att ändra storleken.",
collapsibleSplitTip : "Drag för att ändra storleken. Dubbelklicka för att gömma."
});
}

View file

@ -0,0 +1,179 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* List compiled by mystix on the extjs.com forums.
* Thank you Mystix!
*/
/**
* Turkish translation by Hüseyin Tüfekçilerli
* 04-11-2007, 09:52 AM
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Yükleniyor...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} seçili satır";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Bu sekmeyi kapat";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Bu alandaki değer geçersiz";
}
Date.monthNames = [
"Ocak",
"Şubat",
"Mart",
"Nisan",
"Mayıs",
"Haziran",
"Temmuz",
"Ağustos",
"Eylül",
"Ekim",
"Kasım",
"Aralık"
];
Date.dayNames = [
"Pazar",
"Pazartesi",
"Salı",
"Çarşamba",
"Perşembe",
"Cuma",
"Cumartesi"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "Tamam",
cancel : "İptal",
yes : "Evet",
no : "Hayır"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Bugün",
minText : "Bu tarih minimum tarihten önce",
maxText : "Bu tarih maximum tarihten sonra",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Sonraki Ay (Ctrl+Sağ)',
prevText : 'Önceki Ay (Ctrl+Sol)',
monthYearText : 'Bir ay seçin (Yılları değiştirmek için Ctrl+Yukarı/Aşağı)',
todayTip : "{0} (Boşluk)",
format : "d/m/y",
startDay : 1
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Sayfa",
afterPageText : " / {0}",
firstText : "İlk Sayfa",
prevText : "Önceki Sayfa",
nextText : "Sonraki Sayfa",
lastText : "Son Sayfa",
refreshText : "Yenile",
displayMsg : "{2} satırdan {0} - {1} arası gösteriliyor",
emptyMsg : 'Gösterilecek veri yok'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Bu alan için minimum uzunluk {0}",
maxLengthText : "Bu alan için maximum uzunluk {0}",
blankText : "Bu alan gerekli",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Bu alan için minimum değer {0}",
maxText : "Bu alan için maximum değer {0}",
nanText : "{0} geçerli bir sayı değil"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Pasif",
disabledDatesText : "Pasif",
minText : "Bu alana {0} tarihinden sonraki bir tarih girilmeli",
maxText : "Bu alana {0} tarihinden önceki bir tarih girilmeli",
invalidText : "{0} geçerli bir tarih değil - şu formatta olmalı {1}",
format : "d/m/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Yükleniyor...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Bu alan bir e-mail adresi formatında olmalı "kullanici@alanadi.com"',
urlText : 'Bu alan bir URL formatında olmalı "http:/'+'/www.alanadi.com"',
alphaText : 'Bu alan sadece harf ve _ içermeli',
alphanumText : 'Bu alan sadece harf, sayı ve _ içermeli'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Artarak Sırala",
sortDescText : "Azalarak Sırala",
lockText : "Sütünu Kilitle",
unlockText : "Sütunun Kilidini Kaldır",
columnsText : "Sütunlar"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "İsim",
valueText : "Değer",
dateFormat : "j/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Boyutlandırmak için sürükleyin.",
collapsibleSplitTip : "Boyutlandırmak için sürükleyin. Gizlemek için çift tıklayın."
});
}

View file

@ -0,0 +1,179 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* List compiled by mystix on the extjs.com forums.
* Thank you Mystix!
*/
/**
* Vietnamese translation
* By bpmtri
* 12-April-2007 04:06PM
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Đang tải...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} dòng được chọn";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "Đóng thẻ này";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "Giá trị của ô này không hợp lệ.";
}
Date.monthNames = [
"Tháng 1",
"Tháng 2",
"Tháng 3",
"Tháng 4",
"Tháng 5",
"Tháng 6",
"Tháng 7",
"Tháng 8",
"Tháng 9",
"Tháng 10",
"Tháng 11",
"Tháng 12"
];
Date.dayNames = [
"Chủ nhật",
"Thứ hai",
"Thứ ba",
"Thứ tư",
"Thứ năm",
"Thứ sáu",
"Thứ bảy"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "Đồng ý",
cancel : "Hủy bỏ",
yes : "Có",
no : "Không"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "d/m/Y");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "Hôm nay",
minText : "Ngày này nhỏ hơn ngày nhỏ nhất",
maxText : "Ngày này lớn hơn ngày lớn nhất",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : 'Tháng sau (Control+Right)',
prevText : 'Tháng trước (Control+Left)',
monthYearText : 'Chọn một tháng (Control+Up/Down để thay đổi năm)',
todayTip : "{0} (Spacebar - Phím trắng)",
format : "d/m/y"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "Trang",
afterPageText : "of {0}",
firstText : "Trang đầu",
prevText : "Trang trước",
nextText : "Trang sau",
lastText : "Trang cuối",
refreshText : "Tải lại",
displayMsg : "Hiển thị {0} - {1} của {2}",
emptyMsg : 'Không có dữ liệu để hiển thị'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "Chiều dài tối thiểu của ô này là {0}",
maxLengthText : "Chiều dài tối đa của ô này là {0}",
blankText : "Ô này cần phải nhập giá trị",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "Giá trị nhỏ nhất của ô này là {0}",
maxText : "Giá trị lớn nhất của ô này là {0}",
nanText : "{0} hông phải là một số hợp lệ"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "Vô hiệu",
disabledDatesText : "Vô hiệu",
minText : "Ngày nhập trong ô này phải sau ngày {0}",
maxText : "Ngày nhập trong ô này phải trước ngày {0}",
invalidText : "{0} không phải là một ngày hợp lệ - phải có dạng {1}",
format : "d/m/y"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "Đang tải...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : 'Giá trị của ô này phải là một địa chỉ email có dạng như "ten@abc.com"',
urlText : 'Giá trị của ô này phải là một địa chỉ web(URL) hợp lệ, có dạng như "http:/'+'/www.domain.com"',
alphaText : 'Ô này chỉ được nhập các kí tự và gạch dưới(_)',
alphanumText : 'Ô này chỉ được nhập các kí tự, số và gạch dưới(_)'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "Tăng dần",
sortDescText : "Giảm dần",
lockText : "Khóa cột",
unlockText : "Bỏ khóa cột",
columnsText : "Các cột"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "Tên",
valueText : "Giá trị",
dateFormat : "j/m/Y"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "Kéo giữ chuột để thay đổi kích thước.",
collapsibleSplitTip : "Kéo giữ chuột để thay đổi kích thước. Nhấp đúp để ẩn đi."
});
}

View file

@ -0,0 +1,174 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Simplified Chinese translation
* By DavidHu
* 09 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">加载中...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "{0} 选择行";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "关闭";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "输入值非法";
}
Date.monthNames = [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
];
Date.dayNames = [
"周日",
"周一",
"周二",
"周三",
"周四",
"周五",
"周六"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "确定",
cancel : "取消",
yes : "是",
no : "否"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "y年m月d日");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "今天",
minText : "日期在最小日期之前",
maxText : "日期在最大日期之后",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : '下月 (Control+Right)',
prevText : '上月 (Control+Left)',
monthYearText : '选择一个月 (Control+Up/Down 来改变年)',
todayTip : "{0} (Spacebar)",
format : "y年m月d日"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "页",
afterPageText : "of {0}",
firstText : "第一页",
prevText : "前一页",
nextText : "下一页",
lastText : "最后页",
refreshText : "刷新",
displayMsg : "显示 {0} - {1} of {2}",
emptyMsg : '没有数据需要显示'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "该输入项的最小长度是 {0}",
maxLengthText : "该输入项的最大长度是 {0}",
blankText : "该输入项为必输项",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "该输入项的最小值是 {0}",
maxText : "该输入项的最大值是 {0}",
nanText : "{0} 不是有效数值"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "禁用",
disabledDatesText : "禁用",
minText : "该输入项的日期必须在 {0} 之后",
maxText : "该输入项的日期必须在 {0} 之前",
invalidText : "{0} 是无效的日期 - 必须符合格式: {1}",
format : "y年m月d日"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "加载...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : '该输入项必须是电子邮件地址,格式如: "user@domain.com"',
urlText : '该输入项必须是URL地址格式如 "http:/'+'/www.domain.com"',
alphaText : '该输入项只能包含字符和_',
alphanumText : '该输入项只能包含字符,数字和_'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "正序",
sortDescText : "逆序",
lockText : "锁列",
unlockText : "解锁列",
columnsText : "列"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "名称",
valueText : "值",
dateFormat : "y年m月d日"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "拖动来改变尺寸.",
collapsibleSplitTip : "拖动来改变尺寸. 双击隐藏."
});
}

View file

@ -0,0 +1,174 @@
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/*
* Traditional Chinese translation
* By hata1234
* 09 April 2007
*/
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">讀取中...</div>';
if(Ext.View){
Ext.View.prototype.emptyText = "";
}
if(Ext.grid.Grid){
Ext.grid.Grid.prototype.ddText = "選擇了 {0} 行";
}
if(Ext.TabPanelItem){
Ext.TabPanelItem.prototype.closeText = "關閉此標籤";
}
if(Ext.form.Field){
Ext.form.Field.prototype.invalidText = "數值不符合欄位規定";
}
Date.monthNames = [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
];
Date.dayNames = [
"日",
"一",
"二",
"三",
"四",
"五",
"六"
];
if(Ext.MessageBox){
Ext.MessageBox.buttonText = {
ok : "確定",
cancel : "取消",
yes : "是",
no : "否"
};
}
if(Ext.util.Format){
Ext.util.Format.date = function(v, format){
if(!v) return "";
if(!(v instanceof Date)) v = new Date(Date.parse(v));
return v.dateFormat(format || "Y/m/d");
};
}
if(Ext.DatePicker){
Ext.apply(Ext.DatePicker.prototype, {
todayText : "今天",
minText : "日期必須大於最小容許日期",
maxText : "日期必須小於最大容許日期",
disabledDaysText : "",
disabledDatesText : "",
monthNames : Date.monthNames,
dayNames : Date.dayNames,
nextText : "下個月 (Ctrl+右方向鍵)",
prevText : "上個月 (Ctrl+左方向鍵)",
monthYearText : "選擇月份 (Ctrl+上/下方向鍵選擇年份)",
todayTip : "{0} (空白鍵)",
format : "y/m/d"
});
}
if(Ext.PagingToolbar){
Ext.apply(Ext.PagingToolbar.prototype, {
beforePageText : "第",
afterPageText : "頁,共{0}頁",
firstText : "第一頁",
prevText : "上一頁",
nextText : "下一頁",
lastText : "最後頁",
refreshText : "重新整理",
displayMsg : "顯示{0} - {1}頁,共{2}頁",
emptyMsg : '沒有任何資料'
});
}
if(Ext.form.TextField){
Ext.apply(Ext.form.TextField.prototype, {
minLengthText : "此欄位最少要輸入 {0} 個字",
maxLengthText : "此欄位最多輸入 {0} 個字",
blankText : "此欄位為必填",
regexText : "",
emptyText : null
});
}
if(Ext.form.NumberField){
Ext.apply(Ext.form.NumberField.prototype, {
minText : "此欄位之數值必須大於 {0}",
maxText : "此欄位之數值必須小於 {0}",
nanText : "{0} 不是合法的數字"
});
}
if(Ext.form.DateField){
Ext.apply(Ext.form.DateField.prototype, {
disabledDaysText : "無法使用",
disabledDatesText : "無法使用",
minText : "此欄位之日期必須在 {0} 之後",
maxText : "此欄位之日期必須在 {0} 之前",
invalidText : "{0} 不是正確的日期格式 - 必須像是 「 {1} 」 這樣的格式",
format : "Y/m/d"
});
}
if(Ext.form.ComboBox){
Ext.apply(Ext.form.ComboBox.prototype, {
loadingText : "讀取中 ...",
valueNotFoundText : undefined
});
}
if(Ext.form.VTypes){
Ext.apply(Ext.form.VTypes, {
emailText : '此欄位必須輸入像 "user@domain.com" 之E-Mail格式',
urlText : '此欄位必須輸入像 "http:/'+'/www.domain.com" 之網址格式',
alphaText : '此欄位僅能輸入半形英文字母及底線( _ )符號',
alphanumText : '此欄位僅能輸入半形英文字母、數字及底線( _ )符號'
});
}
if(Ext.grid.GridView){
Ext.apply(Ext.grid.GridView.prototype, {
sortAscText : "正向排序",
sortDescText : "反向排序",
lockText : "鎖定欄位",
unlockText : "解開欄位鎖定",
columnsText : "欄位"
});
}
if(Ext.grid.PropertyColumnModel){
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
nameText : "名稱",
valueText : "數值",
dateFormat : "Y/m/d"
});
}
if(Ext.SplitLayoutRegion){
Ext.apply(Ext.SplitLayoutRegion.prototype, {
splitTip : "拖曳縮放大小.",
collapsibleSplitTip : "拖曳縮放大小. 滑鼠雙擊隱藏."
});
}