BUG 9405 Correcion idioma espanol
This commit is contained in:
185
gulliver/js/ext/locale/ext-lang-af.js
Normal file
185
gulliver/js/ext/locale/ext-lang-af.js
Normal file
@@ -0,0 +1,185 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/*
|
||||
* List compiled by mystix on the extjs.com forums.
|
||||
* Thank you Mystix!
|
||||
*
|
||||
* Afrikaans Translations
|
||||
* by Thys Meintjes (20 July 2007)
|
||||
*/
|
||||
|
||||
/* Ext Core translations */
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Besig om te laai...</div>';
|
||||
|
||||
/* Ext single string translations */
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} geselekteerde ry(e)";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "Maak die oortjie toe";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "Die waarde in hierdie veld is foutief";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "Besig om te laai...";
|
||||
}
|
||||
|
||||
/* Javascript month and days translations */
|
||||
Date.monthNames = [
|
||||
"Januarie",
|
||||
"Februarie",
|
||||
"Maart",
|
||||
"April",
|
||||
"Mei",
|
||||
"Junie",
|
||||
"Julie",
|
||||
"Augustus",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Desember"
|
||||
];
|
||||
|
||||
Date.dayNames = [
|
||||
"Sondag",
|
||||
"Maandag",
|
||||
"Dinsdag",
|
||||
"Woensdag",
|
||||
"Donderdag",
|
||||
"Vrydag",
|
||||
"Saterdag"
|
||||
];
|
||||
|
||||
/* Ext components translations */
|
||||
if(Ext.MessageBox){
|
||||
Ext.MessageBox.buttonText = {
|
||||
ok : "OK",
|
||||
cancel : "Kanselleer",
|
||||
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 || "d-m-y");
|
||||
};
|
||||
}
|
||||
|
||||
if(Ext.DatePicker){
|
||||
Ext.apply(Ext.DatePicker.prototype, {
|
||||
todayText : "Vandag",
|
||||
minText : "Hierdie datum is vroër as die minimum datum",
|
||||
maxText : "Hierdie dataum is later as die maximum datum",
|
||||
disabledDaysText : "",
|
||||
disabledDatesText : "",
|
||||
monthNames : Date.monthNames,
|
||||
dayNames : Date.dayNames,
|
||||
nextText : 'Volgende Maand (Beheer+Regs)',
|
||||
prevText : 'Vorige Maand (Beheer+Links)',
|
||||
monthYearText : "Kies 'n maand (Beheer+Op/Af volgende/vorige jaar)",
|
||||
todayTip : "{0} (Spasie)",
|
||||
format : "d-m-y",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.PagingToolbar){
|
||||
Ext.apply(Ext.PagingToolbar.prototype, {
|
||||
beforePageText : "Bladsy",
|
||||
afterPageText : "van {0}",
|
||||
firstText : "Eerste Bladsy",
|
||||
prevText : "Vorige Bladsy",
|
||||
nextText : "Volgende Bladsy",
|
||||
lastText : "Laatste Bladsy",
|
||||
refreshText : "Verfris",
|
||||
displayMsg : "Wys {0} - {1} van {2}",
|
||||
emptyMsg : 'Geen data om te wys nie'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.TextField){
|
||||
Ext.apply(Ext.form.TextField.prototype, {
|
||||
minLengthText : "Die minimum lengte van die veld is {0}",
|
||||
maxLengthText : "Die maximum lengte van die veld is {0}",
|
||||
blankText : "Die veld is verpligtend",
|
||||
regexText : "",
|
||||
emptyText : null
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.NumberField){
|
||||
Ext.apply(Ext.form.NumberField.prototype, {
|
||||
minText : "Die minimum waarde vir die veld is {0}",
|
||||
maxText : "Die maximum waarde vir die veld is {0}",
|
||||
nanText : "{0} is nie 'n geldige waarde nie"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.DateField){
|
||||
Ext.apply(Ext.form.DateField.prototype, {
|
||||
disabledDaysText : "Afgeskakel",
|
||||
disabledDatesText : "Afgeskakel",
|
||||
minText : "Die datum in hierdie veld moet na {0} wees",
|
||||
maxText : "Die datum in hierdie veld moet voor {0} wees",
|
||||
invalidText : "{0} is nie 'n geldige datum nie - datumformaat is {1}",
|
||||
format : "d/m/y",
|
||||
altFormats : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.ComboBox){
|
||||
Ext.apply(Ext.form.ComboBox.prototype, {
|
||||
loadingText : "Besig om te laai...",
|
||||
valueNotFoundText : undefined
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.VTypes){
|
||||
Ext.apply(Ext.form.VTypes, {
|
||||
emailText : "Hierdie veld moet 'n e-pos adres wees met die formaat 'gebruiker@domein.za'",
|
||||
urlText : "Hierdie veld moet 'n URL wees me die formaat 'http:/'+'/www.domein.za'",
|
||||
alphaText : 'Die veld mag alleenlik letters en _ bevat',
|
||||
alphanumText : 'Die veld mag alleenlik letters, syfers en _ bevat'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GridView){
|
||||
Ext.apply(Ext.grid.GridView.prototype, {
|
||||
sortAscText : "Sorteer Oplopend",
|
||||
sortDescText : "Sorteer Aflopend",
|
||||
lockText : "Vries Kolom",
|
||||
unlockText : "Ontvries Kolom",
|
||||
columnsText : "Kolomme"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "Naam",
|
||||
valueText : "Waarde",
|
||||
dateFormat : "Y-m-j"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Trek om grootte aan te pas.",
|
||||
collapsibleSplitTip : "Trek om grootte aan te pas. Dubbel-klik om weg te steek."
|
||||
});
|
||||
}
|
||||
359
gulliver/js/ext/locale/ext-lang-am.js
Normal file
359
gulliver/js/ext/locale/ext-lang-am.js
Normal file
File diff suppressed because it is too large
Load Diff
279
gulliver/js/ext/locale/ext-lang-bg.js
Normal file
279
gulliver/js/ext/locale/ext-lang-bg.js
Normal file
@@ -0,0 +1,279 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/**
|
||||
* Bulgarian Translation
|
||||
*
|
||||
* By Георги Костадинов, Калгари, Канада
|
||||
* 10 October 2007
|
||||
* By Nedko Penev
|
||||
* 26 October 2007
|
||||
*
|
||||
* (utf-8 encoding)
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Зареждане...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} избрани колони";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "Затвори таб";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "Невалидна стойност на полето";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "Зареждане...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"Януари",
|
||||
"Февруари",
|
||||
"Март",
|
||||
"Април",
|
||||
"Май",
|
||||
"Юни",
|
||||
"Юли",
|
||||
"Август",
|
||||
"Септември",
|
||||
"Октомври",
|
||||
"Ноември",
|
||||
"Декември"
|
||||
];
|
||||
|
||||
Date.monthNumbers = {
|
||||
Jan : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
May : 4,
|
||||
Jun : 5,
|
||||
Jul : 6,
|
||||
Aug : 7,
|
||||
Sep : 8,
|
||||
Oct : 9,
|
||||
Nov : 10,
|
||||
Dec : 11
|
||||
};
|
||||
|
||||
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+Right)',
|
||||
prevText : 'Предишен месец (Control+Left)',
|
||||
monthYearText : 'Избери месец (Control+Up/Down за преместване по години)',
|
||||
todayTip : "{0} (Spacebar)",
|
||||
format : "d.m.y",
|
||||
okText : " OK ",
|
||||
cancelText : "Отмени",
|
||||
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",
|
||||
altFormats : "d.m.y|d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.ComboBox){
|
||||
Ext.apply(Ext.form.ComboBox.prototype, {
|
||||
loadingText : "Зареждане...",
|
||||
valueNotFoundText : undefined
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.VTypes){
|
||||
Ext.apply(Ext.form.VTypes, {
|
||||
emailText : 'Това поле трябва да бъде емейл във формат "user@example.com"',
|
||||
urlText : 'Това поле трябва да бъде URL във формат "http:/'+'/www.example.com"',
|
||||
alphaText : 'Това поле трябва да съдържа само букви и _',
|
||||
alphanumText : 'Това поле трябва да съдържа само букви, цифри и _'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'Моля, въведете URL за връзката:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'Bold (Ctrl+B)',
|
||||
text: 'Удебелява избрания текст.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'Italic (Ctrl+I)',
|
||||
text: 'Прави избрания текст курсив.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'Underline (Ctrl+U)',
|
||||
text: 'Подчертава избрания текст.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'Уголеми текста',
|
||||
text: 'Уголемява размера на шрифта.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'Намали текста',
|
||||
text: 'Намалява размера на шрифта.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'Цвят на маркирания текст',
|
||||
text: 'Променя фоновия цвят на избрания текст.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'Цвят на шрифта',
|
||||
text: 'Променя цвета на избрания текст.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'Ляво подравняване',
|
||||
text: 'Подравнява текста на ляво.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'Центриране',
|
||||
text: 'Центрира текста.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'Дясно подравняване',
|
||||
text: 'Подравнява текста на дясно.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'Неномериран списък',
|
||||
text: 'Започва неномериран списък.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'Номериран списък',
|
||||
text: 'Започва номериран списък.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'Хипервръзка',
|
||||
text: 'Превръща избрания текст в хипервръзка.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'Редактиране на кода',
|
||||
text: 'Преминаване в режим на редактиране на кода.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
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 : "d.m.Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Влачете с мишката за да промените размера.",
|
||||
collapsibleSplitTip : "Влачете с мишката за да промените размера. Чукнете два пъти за да скриете."
|
||||
});
|
||||
}
|
||||
316
gulliver/js/ext/locale/ext-lang-ca.js
Normal file
316
gulliver/js/ext/locale/ext-lang-ca.js
Normal file
File diff suppressed because it is too large
Load Diff
311
gulliver/js/ext/locale/ext-lang-cs.js
Normal file
311
gulliver/js/ext/locale/ext-lang-cs.js
Normal file
File diff suppressed because it is too large
Load Diff
297
gulliver/js/ext/locale/ext-lang-da.js
Normal file
297
gulliver/js/ext/locale/ext-lang-da.js
Normal file
@@ -0,0 +1,297 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/*
|
||||
* Danish translation
|
||||
* By JohnF
|
||||
* 04-09-2007, 05:28 AM
|
||||
*
|
||||
* Extended and modified by Karl Krukow,
|
||||
* December, 2007.
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Henter...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.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 ugyldig";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "Henter...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"januar",
|
||||
"februar",
|
||||
"marts",
|
||||
"april",
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"september",
|
||||
"oktober",
|
||||
"november",
|
||||
"december"
|
||||
];
|
||||
|
||||
Date.getShortMonthName = function(month) {
|
||||
return Date.monthNames[month].substring(0, 3);
|
||||
};
|
||||
|
||||
Date.monthNumbers = {
|
||||
Jan : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
May : 4,
|
||||
Jun : 5,
|
||||
Jul : 6,
|
||||
Aug : 7,
|
||||
Sep : 8,
|
||||
Oct : 9,
|
||||
Nov : 10,
|
||||
Dec : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"søndag",
|
||||
"mandag",
|
||||
"tirsdag",
|
||||
"onsdag",
|
||||
"torsdag",
|
||||
"fredag",
|
||||
"lørdag"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
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",
|
||||
okText : " OK ",
|
||||
cancelText : "Cancel",
|
||||
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",
|
||||
altFormats : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
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 "xxx@yyy.zzz"',
|
||||
urlText : 'Dette felt skal være en URL i formatet "http:/'+'/xxx.yyy"',
|
||||
alphaText : 'Dette felt kan kun indeholde bogstaver og "_" (understregning)',
|
||||
alphanumText : 'Dette felt kan kun indeholde bogstaver, tal og "_" (understregning)'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'Indtast URL:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'Fed (Ctrl+B)', //Can I change this to Ctrl+F?
|
||||
text: 'Formater det markerede tekst med fed.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'Kursiv (Ctrl+I)',//Ctrl+K
|
||||
text: 'Formater det markerede tekst med kursiv.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'Understreg (Ctrl+U)',
|
||||
text: 'Understreg det markerede tekst.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'Forstør tekst',
|
||||
text: 'Forøg fontstørrelsen.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'Formindsk tekst',
|
||||
text: 'Formindsk fontstørrelsen.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'Farve for tekstfremhævelse',
|
||||
text: 'Skift baggrundsfarve for det markerede tekst.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'Skriftfarve',
|
||||
text: 'Skift skriftfarve for det markerede tekst.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'Juster venstre',
|
||||
text: 'Venstrestil tekst.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'Centreret',
|
||||
text: 'Centrer tekst.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'Juster højre',
|
||||
text: 'Højrestil tekst.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'Punktopstilling',
|
||||
text: 'Påbegynd punktopstilling.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'Nummereret opstilling',
|
||||
text: 'Påbegynd nummereret opstilling.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'Hyperlink',
|
||||
text: 'Lav det markerede test til et hyperlink.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'Kildetekstredigering',
|
||||
text: 'Skift til redigering af kildetekst.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
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.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(Ingen)',
|
||||
groupByText : 'Gruppér efter dette felt',
|
||||
showGroupsText : 'Vis i grupper' //should this be sort in groups?
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "Navn",
|
||||
valueText : "Værdi",
|
||||
dateFormat : "j/m/Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Træk for at ændre størrelsen.",
|
||||
collapsibleSplitTip : "Træk for at ændre størrelsen. Dobbelt-klik for at skjule."
|
||||
});
|
||||
}
|
||||
346
gulliver/js/ext/locale/ext-lang-de.js
Normal file
346
gulliver/js/ext/locale/ext-lang-de.js
Normal file
File diff suppressed because it is too large
Load Diff
309
gulliver/js/ext/locale/ext-lang-el_GR.js
Normal file
309
gulliver/js/ext/locale/ext-lang-el_GR.js
Normal file
File diff suppressed because it is too large
Load Diff
346
gulliver/js/ext/locale/ext-lang-en.js
Normal file
346
gulliver/js/ext/locale/ext-lang-en.js
Normal file
File diff suppressed because it is too large
Load Diff
322
gulliver/js/ext/locale/ext-lang-en_GB.js
Normal file
322
gulliver/js/ext/locale/ext-lang-en_GB.js
Normal file
File diff suppressed because it is too large
Load Diff
319
gulliver/js/ext/locale/ext-lang-es.js
Normal file
319
gulliver/js/ext/locale/ext-lang-es.js
Normal file
File diff suppressed because it is too large
Load Diff
273
gulliver/js/ext/locale/ext-lang-fa.js
Normal file
273
gulliver/js/ext/locale/ext-lang-fa.js
Normal file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/*
|
||||
* Farsi (Persian) translation
|
||||
* By Mohaqa
|
||||
* 03-10-2007, 06:23 PM
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">در حال بارگذاری ...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} رکورد انتخاب شده";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "بستن";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "مقدار فیلد صحیح نیست";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "در حال بارگذاری ...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"ژانویه",
|
||||
"فوریه",
|
||||
"مارس",
|
||||
"آپریل",
|
||||
"می",
|
||||
"ژوئن",
|
||||
"جولای",
|
||||
"آگوست",
|
||||
"سپتامبر",
|
||||
"اکتبر",
|
||||
"نوامبر",
|
||||
"دسامبر"
|
||||
];
|
||||
|
||||
Date.monthNumbers = {
|
||||
Jan : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
May : 4,
|
||||
Jun : 5,
|
||||
Jul : 6,
|
||||
Aug : 7,
|
||||
Sep : 8,
|
||||
Oct : 9,
|
||||
Nov : 10,
|
||||
Dec : 11
|
||||
};
|
||||
|
||||
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",
|
||||
okText : " OK ",
|
||||
cancelText : "Cancel",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.PagingToolbar){
|
||||
Ext.apply(Ext.PagingToolbar.prototype, {
|
||||
beforePageText : "صفحه",
|
||||
afterPageText : "از {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",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.ComboBox){
|
||||
Ext.apply(Ext.form.ComboBox.prototype, {
|
||||
loadingText : "در حال بارگذاری ...",
|
||||
valueNotFoundText : undefined
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.VTypes){
|
||||
Ext.apply(Ext.form.VTypes, {
|
||||
emailText : 'مقدار این فیلد باید یک ایمیل با این فرمت باشد "user@example.com"',
|
||||
urlText : 'مقدار این آدرس باید یک آدرس سایت با این فرمت باشد "http:/'+'/www.example.com"',
|
||||
alphaText : 'مقدار این فیلد باید فقط از حروف الفبا و _ تشکیل شده باشد ',
|
||||
alphanumText : 'مقدار این فیلد باید فقط از حروف الفبا، اعداد و _ تشکیل شده باشد'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'لطفا آدرس لینک را وارد کنید:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'تیره (Ctrl+B)',
|
||||
text: 'متن انتخاب شده را تیره می کند.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'ایتالیک (Ctrl+I)',
|
||||
text: 'متن انتخاب شده را ایتالیک می کند.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'زیرخط (Ctrl+U)',
|
||||
text: 'زیر هر نوشته یک خط نمایش می دهد.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'افزایش اندازه',
|
||||
text: 'اندازه فونت را افزایش می دهد.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'کاهش اندازه',
|
||||
text: 'اندازه متن را کاهش می دهد.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'رنگ زمینه متن',
|
||||
text: 'برای تغییر رنگ زمینه متن استفاده می شود.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'رنگ قلم',
|
||||
text: 'رنگ قلم متن را تغییر می دهد.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'چیدن متن از سمت چپ',
|
||||
text: 'متن از سمت چپ چیده شده می شود.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'متن در وسط ',
|
||||
text: 'نمایش متن در قسمت وسط صفحه و رعابت سمت چپ و راست.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'چیدن متن از سمت راست',
|
||||
text: 'متن از سمت راست پیده خواهد شد.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'لیست همراه با علامت',
|
||||
text: 'یک لیست جدید ایجاد می کند.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'لیست عددی',
|
||||
text: 'یک لیست عددی ایجاد می کند. ',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'لینک',
|
||||
text: 'متن انتخاب شده را به لینک تبدیل کنید.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'ویرایش سورس',
|
||||
text: 'رفتن به حالت ویرایش سورس.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
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.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "درگ برای تغییر اندازه.",
|
||||
collapsibleSplitTip : "برای تغییر اندازه درگ کنید."
|
||||
});
|
||||
}
|
||||
303
gulliver/js/ext/locale/ext-lang-fi.js
Normal file
303
gulliver/js/ext/locale/ext-lang-fi.js
Normal file
File diff suppressed because it is too large
Load Diff
346
gulliver/js/ext/locale/ext-lang-fr.js
Normal file
346
gulliver/js/ext/locale/ext-lang-fr.js
Normal file
File diff suppressed because it is too large
Load Diff
218
gulliver/js/ext/locale/ext-lang-fr_CA.js
Normal file
218
gulliver/js/ext/locale/ext-lang-fr_CA.js
Normal file
@@ -0,0 +1,218 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.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.GridPanel){
|
||||
Ext.grid.GridPanel.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";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "En cours de chargement...";
|
||||
}
|
||||
|
||||
Date.shortMonthNames = [
|
||||
"Janv",
|
||||
"Févr",
|
||||
"Mars",
|
||||
"Avr",
|
||||
"Mai",
|
||||
"Juin",
|
||||
"Juil",
|
||||
"Août",
|
||||
"Sept",
|
||||
"Oct",
|
||||
"Nov",
|
||||
"Déc"
|
||||
];
|
||||
|
||||
Date.getShortMonthName = function(month) {
|
||||
return Date.shortMonthNames[month];
|
||||
};
|
||||
|
||||
Date.monthNames = [
|
||||
"Janvier",
|
||||
"Février",
|
||||
"Mars",
|
||||
"Avril",
|
||||
"Mai",
|
||||
"Juin",
|
||||
"Juillet",
|
||||
"Août",
|
||||
"Septembre",
|
||||
"Octobre",
|
||||
"Novembre",
|
||||
"Décembre"
|
||||
];
|
||||
|
||||
Date.monthNumbers = {
|
||||
"Janvier" : 0,
|
||||
"Février" : 1,
|
||||
"Mars" : 2,
|
||||
"Avril" : 3,
|
||||
"Mai" : 4,
|
||||
"Juin" : 5,
|
||||
"Juillet" : 6,
|
||||
"Août" : 7,
|
||||
"Septembre" : 8,
|
||||
"Octobre" : 9,
|
||||
"Novembre" : 10,
|
||||
"Décembre" : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[Ext.util.Format.capitalize(name)];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"Dimanche",
|
||||
"Lundi",
|
||||
"Mardi",
|
||||
"Mercredi",
|
||||
"Jeudi",
|
||||
"Vendredi",
|
||||
"Samedi"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
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@example.com"',
|
||||
urlText : 'Ce champ doit contenir une URL sous le format suivant: "http:/'+'/www.example.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.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Cliquer et glisser pour redimensionner le panneau.",
|
||||
collapsibleSplitTip : "Cliquer et glisser pour redimensionner le panneau. Double-cliquer pour cacher le panneau."
|
||||
});
|
||||
}
|
||||
175
gulliver/js/ext/locale/ext-lang-gr.js
Normal file
175
gulliver/js/ext/locale/ext-lang-gr.js
Normal file
@@ -0,0 +1,175 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/**
|
||||
* Greek (Old Version) Translations by Vagelis
|
||||
* 03-June-2007
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Öüñôùóç...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} åðéëåãìÝíç(åò) ãñáììÞ(Ýò)";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "Êëåßóôå áõôÞ ôçí êáñôÝëá";
|
||||
}
|
||||
|
||||
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 || "ì/ç/Å");
|
||||
};
|
||||
}
|
||||
|
||||
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 : "ì/ç/Å"
|
||||
});
|
||||
}
|
||||
|
||||
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 : "ì/ç/Å"
|
||||
});
|
||||
}
|
||||
|
||||
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 address ôçò ìïñöÞò "user@example.com"',
|
||||
urlText : 'Áõôü ôï ðåäßï ðñÝðåé íá åßíáé ìéá äéåýèõíóç URL ôçò ìïñöÞò "http:/'+'/www.example.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 : "ì/ç/Å"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Óýñåôå ãéá áëëáãÞ ìåãÝèïõò.",
|
||||
collapsibleSplitTip : "Óýñåôå ãéá áëëáãÞ ìåãÝèïõò. Double click ãéá áðüêñõøç."
|
||||
});
|
||||
}
|
||||
293
gulliver/js/ext/locale/ext-lang-he.js
Normal file
293
gulliver/js/ext/locale/ext-lang-he.js
Normal file
@@ -0,0 +1,293 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/**
|
||||
* Hebrew Translations
|
||||
* By spartacus (from forums) 06-12-2007
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">...<2E><><EFBFBD><EFBFBD></div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> {0}";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "...<2E><><EFBFBD><EFBFBD>";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
"<22><><EFBFBD><EFBFBD><EFBFBD>"
|
||||
];
|
||||
|
||||
Date.getShortMonthName = function(month) {
|
||||
return Date.monthNames[month].substring(0, 3);
|
||||
};
|
||||
|
||||
Date.monthNumbers = {
|
||||
Jan : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
May : 4,
|
||||
Jun : 5,
|
||||
Jul : 6,
|
||||
Aug : 7,
|
||||
Sep : 8,
|
||||
Oct : 9,
|
||||
Nov : 10,
|
||||
Dec : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"<22>",
|
||||
"<22>",
|
||||
"<22>",
|
||||
"<22>",
|
||||
"<22>",
|
||||
"<22>",
|
||||
"<22>"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
if(Ext.MessageBox){
|
||||
Ext.MessageBox.buttonText = {
|
||||
ok : "<22><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
cancel : "<22><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
yes : "<22><>",
|
||||
no : "<22><>"
|
||||
};
|
||||
}
|
||||
|
||||
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 : "<22><><EFBFBD><EFBFBD>",
|
||||
minText : ".<2E><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
maxText : ".<2E><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
disabledDaysText : "",
|
||||
disabledDatesText : "",
|
||||
monthNames : Date.monthNames,
|
||||
dayNames : Date.dayNames,
|
||||
nextText : '(Control+Right) <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>',
|
||||
prevText : '(Control+Left) <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
monthYearText : '(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> Control+Up/Down) <20><><EFBFBD> <20><><EFBFBD><EFBFBD>',
|
||||
todayTip : "<22><><EFBFBD> <20><><EFBFBD><EFBFBD>) {0})",
|
||||
format : "d/m/Y",
|
||||
okText : " <3B><><EFBFBD><EFBFBD><EFBFBD> ",
|
||||
cancelText : "<22><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.PagingToolbar){
|
||||
Ext.apply(Ext.PagingToolbar.prototype, {
|
||||
beforePageText : "<22><><EFBFBD><EFBFBD>",
|
||||
afterPageText : "{0} <20><><EFBFBD><EFBFBD>",
|
||||
firstText : "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
prevText : "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>",
|
||||
nextText : "<22><><EFBFBD><EFBFBD> <20><><EFBFBD>",
|
||||
lastText : "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
refreshText : "<22><><EFBFBD><EFBFBD>",
|
||||
displayMsg : "<22><><EFBFBD><EFBFBD> {0} - {1} <20><><EFBFBD><EFBFBD> {2}",
|
||||
emptyMsg : '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.TextField){
|
||||
Ext.apply(Ext.form.TextField.prototype, {
|
||||
minLengthText : "{0} <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>",
|
||||
maxLengthText : "{0} <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>",
|
||||
blankText : "<22><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
regexText : "",
|
||||
emptyText : null
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.NumberField){
|
||||
Ext.apply(Ext.form.NumberField.prototype, {
|
||||
minText : "{0} <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>",
|
||||
maxText : "{0} <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>",
|
||||
nanText : "<22><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> {0}"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.DateField){
|
||||
Ext.apply(Ext.form.DateField.prototype, {
|
||||
disabledDaysText : "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
disabledDatesText : "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
|
||||
minText : "{0} <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>",
|
||||
maxText : "{0} <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>",
|
||||
invalidText : "{1} <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> - <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> {0}",
|
||||
format : "m/d/y",
|
||||
altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.ComboBox){
|
||||
Ext.apply(Ext.form.ComboBox.prototype, {
|
||||
loadingText : "...<2E><><EFBFBD><EFBFBD>",
|
||||
valueNotFoundText : undefined
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.VTypes){
|
||||
Ext.apply(Ext.form.VTypes, {
|
||||
emailText : '"user@example.com" <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
urlText : '"http:/'+'/www.example.com" <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
alphaText : '_<><5F><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>',
|
||||
alphanumText : '_<><5F><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : ':<3A><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: '(Ctrl+B) <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: '(Ctrl+I) <20><><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: '(Ctrl+U) <20><> <20><><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: '<27><><EFBFBD> <20><><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: '<27><><EFBFBD><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>',
|
||||
text: '.<2E><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GridView){
|
||||
Ext.apply(Ext.grid.GridView.prototype, {
|
||||
sortAscText : "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>",
|
||||
sortDescText : "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>",
|
||||
lockText : "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
unlockText : "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>",
|
||||
columnsText : "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(<28><><EFBFBD>)',
|
||||
groupByText : '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><>',
|
||||
showGroupsText : '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "<22><>",
|
||||
valueText : "<22><><EFBFBD>",
|
||||
dateFormat : "m/j/Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : ".<2E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>",
|
||||
collapsibleSplitTip : ".<2E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||||
});
|
||||
}
|
||||
296
gulliver/js/ext/locale/ext-lang-hr.js
Normal file
296
gulliver/js/ext/locale/ext-lang-hr.js
Normal file
@@ -0,0 +1,296 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/*
|
||||
* Croatian translation
|
||||
* By Ylodi (utf8 encoding)
|
||||
* 8 May 2007
|
||||
*
|
||||
* By Stjepan at gmail dot com (utf8 encoding)
|
||||
* 17 May 2008
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Učitavanje...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} odabranih redova";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "Zatvori ovaj tab";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "Unesena vrijednost u ovom polju je neispravna";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "Učitavanje...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"Siječanj",
|
||||
"Veljača",
|
||||
"Ožujak",
|
||||
"Travanj",
|
||||
"Svibanj",
|
||||
"Lipanj",
|
||||
"Srpanj",
|
||||
"Kolovoz",
|
||||
"Rujan",
|
||||
"Listopad",
|
||||
"Studeni",
|
||||
"Prosinac"
|
||||
];
|
||||
|
||||
Date.getShortMonthName = function(month) {
|
||||
return Date.monthNames[month].substring(0, 3);
|
||||
};
|
||||
|
||||
Date.monthNumbers = {
|
||||
Jan : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
May : 4,
|
||||
Jun : 5,
|
||||
Jul : 6,
|
||||
Aug : 7,
|
||||
Sep : 8,
|
||||
Oct : 9,
|
||||
Nov : 10,
|
||||
Dec : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"Nedjelja",
|
||||
"Ponedjeljak",
|
||||
"Utorak",
|
||||
"Srijeda",
|
||||
"Četvrtak",
|
||||
"Petak",
|
||||
"Subota"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
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",
|
||||
okText : " U redu ",
|
||||
cancelText : "Odustani",
|
||||
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 : "Posljednja 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} nije ispravan broj"
|
||||
});
|
||||
}
|
||||
|
||||
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",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
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 : 'Ovdje možete unijeti samo e-mail adresu u obliku "korisnik@domena.com"',
|
||||
urlText : 'Ovdje možete unijeti samo URL u obliku "http:/'+'/www.domena.com"',
|
||||
alphaText : 'Ovo polje može sadržavati samo slova i znak _',
|
||||
alphanumText : 'Ovo polje može sadržavati samo slova, brojeve i znak _'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'Unesite URL za link:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'Podebljano (Ctrl+B)',
|
||||
text: 'Podebljavanje označenog teksta.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'Kurziv (Ctrl+I)',
|
||||
text: 'Pretvaranje označenog tekst u kurziv',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'Podcrtano (Ctrl+U)',
|
||||
text: 'Potcrtavanje označenog teksta',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'Povećanje teksta',
|
||||
text: 'Povećavanje veličine fonta.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'Smanjivanje teksta',
|
||||
text: 'Smanjivanje veličine fonta.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'Boja označenog teksta',
|
||||
text: 'Promjena boje pozadine označenog teksta.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'Boja fonta',
|
||||
text: 'Promjena boje označenog teksta.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'Lijevo poravnanje teksta',
|
||||
text: 'Poravnanje teksta na lijevu stranu.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'Centriranje teksta',
|
||||
text: 'Centriranje teksta u uređivaču teksta.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'Desno poravnanje teksta',
|
||||
text: 'Poravnanje teksta na desnu stranu.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'Označena lista',
|
||||
text: 'Započinjanje označene liste.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'Numerirana lista',
|
||||
text: 'Započinjanje numerirane liste.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'Hiperveza',
|
||||
text: 'Stvaranje hiperveze od označenog teksta.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'Uređivanje izvornog koda',
|
||||
text: 'Prebacivanje u način rada za uređivanje izvornog koda.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
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.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(Ništa)',
|
||||
groupByText : 'Grupiranje po ovom polju',
|
||||
showGroupsText : 'Prikaz u grupama'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "Naziv",
|
||||
valueText : "Vrijednost",
|
||||
dateFormat : "d.m.Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Povuci za promjenu veličine.",
|
||||
collapsibleSplitTip : "Povuci za promjenu veličine. Dvostruki klik za skrivanje."
|
||||
});
|
||||
}
|
||||
297
gulliver/js/ext/locale/ext-lang-hu.js
Normal file
297
gulliver/js/ext/locale/ext-lang-hu.js
Normal file
@@ -0,0 +1,297 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/**
|
||||
* List compiled by mystix on the extjs.com forums.
|
||||
* Thank you Mystix!
|
||||
*
|
||||
* Hungarian Translations (utf-8 encoded)
|
||||
* by Amon <amon@theba.hu> (27 Apr 2008)
|
||||
* encoding fixed by Vili (17 Feb 2009)
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Betöltés...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.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 = "Hibás érték!";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "Betöltés...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"Január",
|
||||
"Február",
|
||||
"Március",
|
||||
"Április",
|
||||
"Május",
|
||||
"Június",
|
||||
"Július",
|
||||
"Augusztus",
|
||||
"Szeptember",
|
||||
"Október",
|
||||
"November",
|
||||
"December"
|
||||
];
|
||||
|
||||
Date.getShortMonthName = function(month) {
|
||||
return Date.monthNames[month].substring(0, 3);
|
||||
};
|
||||
|
||||
Date.monthNumbers = {
|
||||
'Jan' : 0,
|
||||
'Feb' : 1,
|
||||
'Már' : 2,
|
||||
'Ápr' : 3,
|
||||
'Máj' : 4,
|
||||
'Jún' : 5,
|
||||
'Júl' : 6,
|
||||
'Aug' : 7,
|
||||
'Sze' : 8,
|
||||
'Okt' : 9,
|
||||
'Nov' : 10,
|
||||
'Dec' : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"Vasárnap",
|
||||
"Hétfő",
|
||||
"Kedd",
|
||||
"Szerda",
|
||||
"Csütörtök",
|
||||
"Péntek",
|
||||
"Szombat"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
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 : "Mai nap",
|
||||
minText : "A dátum korábbi a megengedettnél",
|
||||
maxText : "A dátum későbbi a megengedettnél",
|
||||
disabledDaysText : "",
|
||||
disabledDatesText : "",
|
||||
monthNames : Date.monthNames,
|
||||
dayNames : Date.dayNames,
|
||||
nextText : 'Köv. hónap (CTRL+Jobbra)',
|
||||
prevText : 'Előző hónap (CTRL+Balra)',
|
||||
monthYearText : 'Válassz hónapot (Évválasztás: CTRL+Fel/Le)',
|
||||
todayTip : "{0} (Szóköz)",
|
||||
format : "y-m-d",
|
||||
okText : " OK ",
|
||||
cancelText : "Mégsem",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
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ő oldal",
|
||||
lastText : "Utolsó oldal",
|
||||
refreshText : "Frissítés",
|
||||
displayMsg : "{0} - {1} sorok láthatók a {2}-ból/ből",
|
||||
emptyMsg : 'Nincs megjeleníthető adat'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.TextField){
|
||||
Ext.apply(Ext.form.TextField.prototype, {
|
||||
minLengthText : "A mező tartalma legalább {0} hosszú kell legyen",
|
||||
maxLengthText : "A mező tartalma legfeljebb {0} hosszú lehet",
|
||||
blankText : "Kötelezően kitöltendő mező",
|
||||
regexText : "",
|
||||
emptyText : null
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.NumberField){
|
||||
Ext.apply(Ext.form.NumberField.prototype, {
|
||||
minText : "A mező tartalma nem lehet kissebb, mint {0}",
|
||||
maxText : "A mező tartalma nem lehet nagyobb, mint {0}",
|
||||
nanText : "{0} nem szám"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.DateField){
|
||||
Ext.apply(Ext.form.DateField.prototype, {
|
||||
disabledDaysText : "Nem választható",
|
||||
disabledDatesText : "Nem választható",
|
||||
minText : "A dátum nem lehet korábbi, mint {0}",
|
||||
maxText : "A dátum nem lehet későbbi, mint {0}",
|
||||
invalidText : "{0} nem megfelelő dátum - a helyes formátum: {1}",
|
||||
format : "Y m d",
|
||||
altFormats : "Y-m-d|y-m-d|y/m/d|m/d|m-d|md|ymd|Ymd|d",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
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ő email címet tartalmazhat, melynek formátuma "felhasználó@szolgáltató.hu"',
|
||||
urlText : 'A mező webcímet tartalmazhat, melynek formátuma "http:/'+'/www.weboldal.hu"',
|
||||
alphaText : 'A mező csak betűket és aláhúzást (_) tartalmazhat',
|
||||
alphanumText : 'A mező csak betűket, számokat és aláhúzást (_) tartalmazhat'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'Add meg a webcímet:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'Félkövér (Ctrl+B)',
|
||||
text: 'Félkövérré teszi a kijelölt szöveget.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'Dőlt (Ctrl+I)',
|
||||
text: 'Dőlté teszi a kijelölt szöveget.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'Aláhúzás (Ctrl+U)',
|
||||
text: 'Aláhúzza a kijelölt szöveget.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'Szöveg nagyítás',
|
||||
text: 'Növeli a szövegméretet.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'Szöveg kicsinyítés',
|
||||
text: 'Csökkenti a szövegméretet.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'Háttérszín',
|
||||
text: 'A kijelölt szöveg háttérszínét módosítja.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'Szövegszín',
|
||||
text: 'A kijelölt szöveg színét módosítja.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'Balra zárt',
|
||||
text: 'Balra zárja a szöveget.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'Középre zárt',
|
||||
text: 'Középre zárja a szöveget.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'Jobbra zárt',
|
||||
text: 'Jobbra zárja a szöveget.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'Felsorolás',
|
||||
text: 'Felsorolást kezd.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'Számozás',
|
||||
text: 'Számozott listát kezd.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'Hiperlink',
|
||||
text: 'A kijelölt szöveget linkké teszi.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'Forrás nézet',
|
||||
text: 'Forrás nézetbe kapcsol.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GridView){
|
||||
Ext.apply(Ext.grid.GridView.prototype, {
|
||||
sortAscText : "Növekvő rendezés",
|
||||
sortDescText : "Csökkenő rendezés",
|
||||
lockText : "Oszlop zárolás",
|
||||
unlockText : "Oszlop feloldás",
|
||||
columnsText : "Oszlopok"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(Nincs)',
|
||||
groupByText : 'Oszlop szerint csoportosítás',
|
||||
showGroupsText : 'Csoportos nézet'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "Név",
|
||||
valueText : "Érték",
|
||||
dateFormat : "Y m j"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Átméretezés húzásra.",
|
||||
collapsibleSplitTip : "Átméretezés húzásra. Eltüntetés duplaklikk."
|
||||
});
|
||||
}
|
||||
303
gulliver/js/ext/locale/ext-lang-id.js
Normal file
303
gulliver/js/ext/locale/ext-lang-id.js
Normal file
File diff suppressed because it is too large
Load Diff
298
gulliver/js/ext/locale/ext-lang-it.js
Normal file
298
gulliver/js/ext/locale/ext-lang-it.js
Normal file
@@ -0,0 +1,298 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/*
|
||||
* Italian translation
|
||||
* By eric_void
|
||||
* 04-10-2007, 11:25 AM
|
||||
* Updated by Federico Grilli 21/12/2007
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Caricamento in corso...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} righe selezionate";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "Chiudi pannello";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "Valore non valido";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "Caricamento in corso...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"Gennaio",
|
||||
"Febbraio",
|
||||
"Marzo",
|
||||
"Aprile",
|
||||
"Maggio",
|
||||
"Giugno",
|
||||
"Luglio",
|
||||
"Agosto",
|
||||
"Settembre",
|
||||
"Ottobre",
|
||||
"Novembre",
|
||||
"Dicembre"
|
||||
];
|
||||
|
||||
Date.getShortMonthName = function(month) {
|
||||
return Date.monthNames[month].substring(0, 3);
|
||||
};
|
||||
|
||||
Date.monthNumbers = {
|
||||
Gen : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
Mag : 4,
|
||||
Giu : 5,
|
||||
Lug : 6,
|
||||
Ago : 7,
|
||||
Set : 8,
|
||||
Ott : 9,
|
||||
Nov : 10,
|
||||
Dic : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"Domenica",
|
||||
"Luned\u00EC",
|
||||
"Marted\u00EC",
|
||||
"Mercoled\u00EC",
|
||||
"Gioved\u00EC",
|
||||
"Venerd\u00EC",
|
||||
"Sabato"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
if(Ext.MessageBox){
|
||||
Ext.MessageBox.buttonText = {
|
||||
ok : "OK",
|
||||
cancel : "Annulla",
|
||||
yes : "S\u00EC",
|
||||
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",
|
||||
cancelText : "Annulla",
|
||||
okText : " OK ",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
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 : "Record {0} - {1} di {2}",
|
||||
emptyMsg : 'Nessun dato da mostrare'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.TextField){
|
||||
Ext.apply(Ext.form.TextField.prototype, {
|
||||
minLengthText : "La lunghezza minima \u00E8 {0}",
|
||||
maxLengthText : "La lunghezza massima \u00E8 {0}",
|
||||
blankText : "Campo obbligatorio",
|
||||
regexText : "",
|
||||
emptyText : null
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.NumberField){
|
||||
Ext.apply(Ext.form.NumberField.prototype, {
|
||||
decimalSeparator : ",",
|
||||
decimalPrecision : 2,
|
||||
minText : "Il valore minimo \u00E8 {0}",
|
||||
maxText : "Il valore massimo \u00E8 {0}",
|
||||
nanText : "{0} non \u00E8 un valore numerico corretto"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.DateField){
|
||||
Ext.apply(Ext.form.DateField.prototype, {
|
||||
disabledDaysText : "Disabilitato",
|
||||
disabledDatesText : "Disabilitato",
|
||||
minText : "La data deve essere successiva al {0}",
|
||||
maxText : "La data deve essere precedente al {0}",
|
||||
invalidText : "{0} non \u00E8 una data valida. Deve essere nel formato {1}",
|
||||
format : "d/m/y",
|
||||
altFormats : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
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@example.com"',
|
||||
urlText : 'Il campo deve essere un indirizzo web nel formato "http:/'+'/www.example.com"',
|
||||
alphaText : 'Il campo deve contenere solo lettere e _',
|
||||
alphanumText : 'Il campo deve contenere solo lettere, numeri e _'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'Inserire un URL per il link:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'Grassetto (Ctrl+B)',
|
||||
text: 'Rende il testo selezionato in grassetto.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'Corsivo (Ctrl+I)',
|
||||
text: 'Rende il testo selezionato in corsivo.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'Sottolinea (Ctrl+U)',
|
||||
text: 'Sottolinea il testo selezionato.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'Ingrandisci testo',
|
||||
text: 'Aumenta la dimensione del carattere.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'Rimpicciolisci testo',
|
||||
text: 'Diminuisce la dimensione del carattere.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'Colore evidenziatore testo',
|
||||
text: 'Modifica il colore di sfondo del testo selezionato.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'Colore carattere',
|
||||
text: 'Modifica il colore del testo selezionato.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'Allinea a sinistra',
|
||||
text: 'Allinea il testo a sinistra.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'Centra',
|
||||
text: 'Centra il testo.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'Allinea a destra',
|
||||
text: 'Allinea il testo a destra.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'Elenco puntato',
|
||||
text: 'Elenco puntato.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'Elenco numerato',
|
||||
text: 'Elenco numerato.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'Collegamento',
|
||||
text: 'Trasforma il testo selezionato in un collegamanto.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'Sorgente',
|
||||
text: 'Passa alla modalit\u00E0 editing del sorgente.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
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.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(Nessun dato)',
|
||||
groupByText : 'Raggruppa per questo campo',
|
||||
showGroupsText : 'Mostra nei gruppi'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "Nome",
|
||||
valueText : "Valore",
|
||||
dateFormat : "j/m/Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Trascina per cambiare dimensioni.",
|
||||
collapsibleSplitTip : "Trascina per cambiare dimensioni. Doppio click per nascondere."
|
||||
});
|
||||
}
|
||||
|
||||
319
gulliver/js/ext/locale/ext-lang-ja.js
Normal file
319
gulliver/js/ext/locale/ext-lang-ja.js
Normal file
File diff suppressed because it is too large
Load Diff
268
gulliver/js/ext/locale/ext-lang-ko.js
Normal file
268
gulliver/js/ext/locale/ext-lang-ko.js
Normal file
@@ -0,0 +1,268 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/**
|
||||
* Korean Translations By nicetip
|
||||
* 05 September 2007
|
||||
* Modify by techbug / 25 February 2008
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">로딩중...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} 개가 선택되었습니다.";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "닫기";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "올바른 값이 아닙니다.";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "로딩중...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"1월",
|
||||
"2월",
|
||||
"3월",
|
||||
"4월",
|
||||
"5월",
|
||||
"6월",
|
||||
"7월",
|
||||
"8월",
|
||||
"9월",
|
||||
"10월",
|
||||
"11월",
|
||||
"12월"
|
||||
];
|
||||
|
||||
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 || "m/d/Y");
|
||||
};
|
||||
}
|
||||
|
||||
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 : "m/d/y",
|
||||
okText : "확인",
|
||||
cancelText : "취소",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
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 : "m/d/y",
|
||||
startDay : 0
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.ComboBox){
|
||||
Ext.apply(Ext.form.ComboBox.prototype, {
|
||||
loadingText : "로딩중...",
|
||||
valueNotFoundText : undefined
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.VTypes){
|
||||
Ext.apply(Ext.form.VTypes, {
|
||||
emailText : '이메일 주소 형식에 맞게 입력해야합니다. (예: "user@example.com")',
|
||||
urlText : 'URL 형식에 맞게 입력해야합니다. (예: "http:/'+'/www.example.com")',
|
||||
alphaText : '영문, 밑줄(_)만 입력할 수 있습니다.',
|
||||
alphanumText : '영문, 숫자, 밑줄(_)만 입력할 수 있습니다.'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'URL을 입력해주세요:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: '굵게 (Ctrl+B)',
|
||||
text: '선택한 텍스트를 굵게 표시합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: '기울임꼴 (Ctrl+I)',
|
||||
text: '선택한 텍스트를 기울임꼴로 표시합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: '밑줄 (Ctrl+U)',
|
||||
text: '선택한 텍스트에 밑줄을 표시합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: '글꼴크기 늘림',
|
||||
text: '글꼴 크기를 크게 합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: '글꼴크기 줄임',
|
||||
text: '글꼴 크기를 작게 합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: '텍스트 강조 색',
|
||||
text: '선택한 텍스트의 배경색을 변경합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: '글꼴색',
|
||||
text: '선택한 텍스트의 색을 변경합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: '텍스트 왼쪽 맞춤',
|
||||
text: '왼쪽에 텍스트를 맞춥니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: '가운데 맞춤',
|
||||
text: '가운데에 텍스트를 맞춥니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: '텍스트 오른쪽 맞춤',
|
||||
text: '오른쪽에 텍스트를 맞춥니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: '글머리 기호',
|
||||
text: '글머리 기호 목록을 시작합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: '번호 매기기',
|
||||
text: '번호 매기기 목록을 시작합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: '하이퍼링크',
|
||||
text: '선택한 텍스트에 하이퍼링크를 만듭니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: '소스편집',
|
||||
text: '소스편집 모드로 변환합니다.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GridView){
|
||||
Ext.apply(Ext.grid.GridView.prototype, {
|
||||
sortAscText : "오름차순 정렬",
|
||||
sortDescText : "내림차순 정렬",
|
||||
lockText : "칼럼 잠금",
|
||||
unlockText : "칼럼 잠금해제",
|
||||
columnsText : "칼럼 목록"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(None)',
|
||||
groupByText : '현재 필드로 그룹핑합니다.',
|
||||
showGroupsText : '그룹으로 보여주기'
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "항목",
|
||||
valueText : "값",
|
||||
dateFormat : "m/j/Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "크기변경을 위해 드래그하세요.",
|
||||
collapsibleSplitTip : "크기변경을 위해 드래그, 숨기기 위해 더블클릭 하세요."
|
||||
});
|
||||
}
|
||||
|
||||
334
gulliver/js/ext/locale/ext-lang-lt.js
Normal file
334
gulliver/js/ext/locale/ext-lang-lt.js
Normal file
File diff suppressed because it is too large
Load Diff
177
gulliver/js/ext/locale/ext-lang-lv.js
Normal file
177
gulliver/js/ext/locale/ext-lang-lv.js
Normal file
@@ -0,0 +1,177 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.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.GridPanel){
|
||||
Ext.grid.GridPanel.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",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
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.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Velc, lai mainītu izmēru.",
|
||||
collapsibleSplitTip : "Velc, lai mainītu izmēru. Dubultklikšķis noslēpj apgabalu."
|
||||
});
|
||||
}
|
||||
176
gulliver/js/ext/locale/ext-lang-mk.js
Normal file
176
gulliver/js/ext/locale/ext-lang-mk.js
Normal file
@@ -0,0 +1,176 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.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.GridPanel){
|
||||
Ext.grid.GridPanel.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@example.com"',
|
||||
urlText : 'Ова поле треба да биде URL во формат "http:/'+'/www.example.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.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Повлечете за менување на големината.",
|
||||
collapsibleSplitTip : "Повлечете за менување на големината. Дупли клик за криење."
|
||||
});
|
||||
}
|
||||
324
gulliver/js/ext/locale/ext-lang-nl.js
Normal file
324
gulliver/js/ext/locale/ext-lang-nl.js
Normal file
File diff suppressed because it is too large
Load Diff
295
gulliver/js/ext/locale/ext-lang-no_NB.js
Normal file
295
gulliver/js/ext/locale/ext-lang-no_NB.js
Normal file
@@ -0,0 +1,295 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/**
|
||||
*
|
||||
* Norwegian translation (Bokmål: no-NB)
|
||||
* By Tore Kjørsvik 21-January-2008
|
||||
*
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Laster...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} markert(e) rad(er)";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "Lukk denne fanen";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "Verdien i dette feltet 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.getShortMonthName = function(month) {
|
||||
return Date.monthNames[month].substring(0, 3);
|
||||
};
|
||||
|
||||
Date.monthNumbers = {
|
||||
Jan : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
Mai : 4,
|
||||
Jun : 5,
|
||||
Jul : 6,
|
||||
Aug : 7,
|
||||
Sep : 8,
|
||||
Okt : 9,
|
||||
Nov : 10,
|
||||
Des : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"Søndag",
|
||||
"Mandag",
|
||||
"Tirsdag",
|
||||
"Onsdag",
|
||||
"Torsdag",
|
||||
"Fredag",
|
||||
"Lørdag"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
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 før tidligste tillatte dato",
|
||||
maxText : "Denne datoen er etter seneste tillatte dato",
|
||||
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",
|
||||
okText : " OK ",
|
||||
cancelText : "Avbryt",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
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} av {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} er ikke en gyldig dato - den må være på formatet {1}",
|
||||
format : "d.m.y",
|
||||
altFormats : "d.m.Y|d/m/y|d/m/Y|d-m-y|d-m-Y|d.m|d/m|d-m|dm|dmy|dmY|Y-m-d|d",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
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 på formatet "bruker@domene.no"',
|
||||
urlText : 'Dette feltet skal være en link (URL) på formatet "http:/'+'/www.domene.no"',
|
||||
alphaText : 'Dette feltet skal kun inneholde bokstaver og _',
|
||||
alphanumText : 'Dette feltet skal kun inneholde bokstaver, tall og _'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'Vennligst skriv inn URL for lenken:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'Fet (Ctrl+B)',
|
||||
text: 'Gjør den valgte teksten fet.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'Kursiv (Ctrl+I)',
|
||||
text: 'Gjør den valgte teksten kursiv.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'Understrek (Ctrl+U)',
|
||||
text: 'Understrek den valgte teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'Forstørr tekst',
|
||||
text: 'Gjør fontstørrelse større.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'Forminsk tekst',
|
||||
text: 'Gjør fontstørrelse mindre.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'Tekst markeringsfarge',
|
||||
text: 'Endre bakgrunnsfarge til den valgte teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'Font farge',
|
||||
text: 'Endre farge på den valgte teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'Venstrejuster tekst',
|
||||
text: 'Venstrejuster teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'Sentrer tekst',
|
||||
text: 'Sentrer teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'Høyrejuster tekst',
|
||||
text: 'Høyrejuster teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'Punktliste',
|
||||
text: 'Start en punktliste.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'Nummerert liste',
|
||||
text: 'Start en nummerert liste.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'Lenke',
|
||||
text: 'Gjør den valgte teksten til en lenke.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'Rediger kilde',
|
||||
text: 'Bytt til kilderedigeringsvisning.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
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.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(Ingen)',
|
||||
groupByText : 'Grupper etter dette feltet',
|
||||
showGroupsText : 'Vis i grupper'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "Navn",
|
||||
valueText : "Verdi",
|
||||
dateFormat : "d.m.Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Dra for å endre størrelse.",
|
||||
collapsibleSplitTip : "Dra for å endre størrelse. Dobbelklikk for å skjule."
|
||||
});
|
||||
}
|
||||
295
gulliver/js/ext/locale/ext-lang-no_NN.js
Normal file
295
gulliver/js/ext/locale/ext-lang-no_NN.js
Normal file
@@ -0,0 +1,295 @@
|
||||
/*!
|
||||
* Ext JS Library 3.4.0
|
||||
* Copyright(c) 2006-2011 Sencha Inc.
|
||||
* licensing@sencha.com
|
||||
* http://www.sencha.com/license
|
||||
*/
|
||||
/**
|
||||
*
|
||||
* Norwegian translation (Nynorsk: no-NN)
|
||||
* By Tore Kjørsvik 21-January-2008
|
||||
*
|
||||
*/
|
||||
|
||||
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Lastar...</div>';
|
||||
|
||||
if(Ext.View){
|
||||
Ext.View.prototype.emptyText = "";
|
||||
}
|
||||
|
||||
if(Ext.grid.GridPanel){
|
||||
Ext.grid.GridPanel.prototype.ddText = "{0} markert(e) rad(er)";
|
||||
}
|
||||
|
||||
if(Ext.TabPanelItem){
|
||||
Ext.TabPanelItem.prototype.closeText = "Lukk denne fana";
|
||||
}
|
||||
|
||||
if(Ext.form.Field){
|
||||
Ext.form.Field.prototype.invalidText = "Verdien i dette feltet er ugyldig";
|
||||
}
|
||||
|
||||
if(Ext.LoadMask){
|
||||
Ext.LoadMask.prototype.msg = "Lastar...";
|
||||
}
|
||||
|
||||
Date.monthNames = [
|
||||
"Januar",
|
||||
"Februar",
|
||||
"Mars",
|
||||
"April",
|
||||
"Mai",
|
||||
"Juni",
|
||||
"Juli",
|
||||
"August",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Desember"
|
||||
];
|
||||
|
||||
Date.getShortMonthName = function(month) {
|
||||
return Date.monthNames[month].substring(0, 3);
|
||||
};
|
||||
|
||||
Date.monthNumbers = {
|
||||
Jan : 0,
|
||||
Feb : 1,
|
||||
Mar : 2,
|
||||
Apr : 3,
|
||||
Mai : 4,
|
||||
Jun : 5,
|
||||
Jul : 6,
|
||||
Aug : 7,
|
||||
Sep : 8,
|
||||
Okt : 9,
|
||||
Nov : 10,
|
||||
Des : 11
|
||||
};
|
||||
|
||||
Date.getMonthNumber = function(name) {
|
||||
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
||||
};
|
||||
|
||||
Date.dayNames = [
|
||||
"Søndag",
|
||||
"Måndag",
|
||||
"Tysdag",
|
||||
"Onsdag",
|
||||
"Torsdag",
|
||||
"Fredag",
|
||||
"Laurdag"
|
||||
];
|
||||
|
||||
Date.getShortDayName = function(day) {
|
||||
return Date.dayNames[day].substring(0, 3);
|
||||
};
|
||||
|
||||
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 før tidlegaste tillatne dato",
|
||||
maxText : "Denne datoen er etter seinaste tillatne dato",
|
||||
disabledDaysText : "",
|
||||
disabledDatesText : "",
|
||||
monthNames : Date.monthNames,
|
||||
dayNames : Date.dayNames,
|
||||
nextText : 'Neste månad (Control+Pil Høgre)',
|
||||
prevText : 'Førre månad (Control+Pil Venstre)',
|
||||
monthYearText : 'Velj ein månad (Control+Pil Opp/Ned for å skifte år)',
|
||||
todayTip : "{0} (Mellomrom)",
|
||||
format : "d.m.y",
|
||||
okText : " OK ",
|
||||
cancelText : "Avbryt",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.PagingToolbar){
|
||||
Ext.apply(Ext.PagingToolbar.prototype, {
|
||||
beforePageText : "Side",
|
||||
afterPageText : "av {0}",
|
||||
firstText : "Første sida",
|
||||
prevText : "Førre sida",
|
||||
nextText : "Neste sida",
|
||||
lastText : "Siste sida",
|
||||
refreshText : "Oppdater",
|
||||
displayMsg : "Viser {0} - {1} av {2}",
|
||||
emptyMsg : 'Ingen data å vise'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.TextField){
|
||||
Ext.apply(Ext.form.TextField.prototype, {
|
||||
minLengthText : "Den minste lengda for dette feltet er {0}",
|
||||
maxLengthText : "Den største lengda for dette feltet er {0}",
|
||||
blankText : "Dette feltet er påkravd",
|
||||
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 ikkje eit gyldig nummer"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.DateField){
|
||||
Ext.apply(Ext.form.DateField.prototype, {
|
||||
disabledDaysText : "Deaktivert",
|
||||
disabledDatesText : "Deaktivert",
|
||||
minText : "Datoen i dette feltet må vere etter {0}",
|
||||
maxText : "Datoen i dette feltet må vere før {0}",
|
||||
invalidText : "{0} er ikkje ein gyldig dato - han må vere på formatet {1}",
|
||||
format : "d.m.y",
|
||||
altFormats : "d.m.Y|d/m/y|d/m/Y|d-m-y|d-m-Y|d.m|d/m|d-m|dm|dmy|dmY|Y-m-d|d",
|
||||
startDay : 1
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.ComboBox){
|
||||
Ext.apply(Ext.form.ComboBox.prototype, {
|
||||
loadingText : "Lastar...",
|
||||
valueNotFoundText : undefined
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.VTypes){
|
||||
Ext.apply(Ext.form.VTypes, {
|
||||
emailText : 'Dette feltet skal vere ei epost adresse på formatet "bruker@domene.no"',
|
||||
urlText : 'Dette feltet skal vere ein link (URL) på formatet "http:/'+'/www.domene.no"',
|
||||
alphaText : 'Dette feltet skal berre innehalde bokstavar og _',
|
||||
alphanumText : 'Dette feltet skal berre innehalde bokstavar, tal og _'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.form.HtmlEditor){
|
||||
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
||||
createLinkText : 'Ver venleg og skriv inn URL for lenken:',
|
||||
buttonTips : {
|
||||
bold : {
|
||||
title: 'Feit (Ctrl+B)',
|
||||
text: 'Gjer den valde teksten feit.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
italic : {
|
||||
title: 'Kursiv (Ctrl+I)',
|
||||
text: 'Gjer den valde teksten kursiv.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
underline : {
|
||||
title: 'Understrek (Ctrl+U)',
|
||||
text: 'Understrek den valde teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
increasefontsize : {
|
||||
title: 'Forstørr tekst',
|
||||
text: 'Gjer fontstorleik større.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
decreasefontsize : {
|
||||
title: 'Forminsk tekst',
|
||||
text: 'Gjer fontstorleik mindre.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
backcolor : {
|
||||
title: 'Tekst markeringsfarge',
|
||||
text: 'Endre bakgrunnsfarge til den valde teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
forecolor : {
|
||||
title: 'Font farge',
|
||||
text: 'Endre farge på den valde teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyleft : {
|
||||
title: 'Venstrejuster tekst',
|
||||
text: 'Venstrejuster teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifycenter : {
|
||||
title: 'Sentrer tekst',
|
||||
text: 'Sentrer teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
justifyright : {
|
||||
title: 'Høgrejuster tekst',
|
||||
text: 'Høgrejuster teksten.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertunorderedlist : {
|
||||
title: 'Punktliste',
|
||||
text: 'Start ei punktliste.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
insertorderedlist : {
|
||||
title: 'Nummerert liste',
|
||||
text: 'Start ei nummerert liste.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
createlink : {
|
||||
title: 'Lenke',
|
||||
text: 'Gjer den valde teksten til ei lenke.',
|
||||
cls: 'x-html-editor-tip'
|
||||
},
|
||||
sourceedit : {
|
||||
title: 'Rediger kjelde',
|
||||
text: 'Bytt til kjelderedigeringsvising.',
|
||||
cls: 'x-html-editor-tip'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GridView){
|
||||
Ext.apply(Ext.grid.GridView.prototype, {
|
||||
sortAscText : "Sorter stigande",
|
||||
sortDescText : "Sorter fallande",
|
||||
lockText : "Lås kolonne",
|
||||
unlockText : "Lås opp kolonne",
|
||||
columnsText : "Kolonner"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.GroupingView){
|
||||
Ext.apply(Ext.grid.GroupingView.prototype, {
|
||||
emptyGroupText : '(Ingen)',
|
||||
groupByText : 'Grupper etter dette feltet',
|
||||
showGroupsText : 'Vis i grupper'
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.grid.PropertyColumnModel){
|
||||
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
||||
nameText : "Namn",
|
||||
valueText : "Verdi",
|
||||
dateFormat : "d.m.Y"
|
||||
});
|
||||
}
|
||||
|
||||
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
||||
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
||||
splitTip : "Dra for å endre storleik.",
|
||||
collapsibleSplitTip : "Dra for å endre storleik. Dobbelklikk for å skjule."
|
||||
});
|
||||
}
|
||||
304
gulliver/js/ext/locale/ext-lang-pl.js
Normal file
304
gulliver/js/ext/locale/ext-lang-pl.js
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user