172 lines
6.1 KiB
JavaScript
172 lines
6.1 KiB
JavaScript
|
/*
|
|||
|
This file is part of Ext JS 4.2
|
|||
|
|
|||
|
Copyright (c) 2011-2013 Sencha Inc
|
|||
|
|
|||
|
Contact: http://www.sencha.com/contact
|
|||
|
|
|||
|
GNU General Public License Usage
|
|||
|
This file may be used under the terms of the GNU General Public License version 3.0 as
|
|||
|
published by the Free Software Foundation and appearing in the file LICENSE included in the
|
|||
|
packaging of this file.
|
|||
|
|
|||
|
Please review the following information to ensure the GNU General Public License version 3.0
|
|||
|
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
|
|||
|
|
|||
|
If you are unsure which license is appropriate for your use, please contact the sales department
|
|||
|
at http://www.sencha.com/contact.
|
|||
|
|
|||
|
Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314)
|
|||
|
*/
|
|||
|
/**
|
|||
|
* Macedonia translation
|
|||
|
* By PetarD petar.dimitrijevic@vorteksed.com.mk (utf8 encoding)
|
|||
|
* 23 April 2007
|
|||
|
*/
|
|||
|
Ext.onReady(function() {
|
|||
|
|
|||
|
if (Ext.Date) {
|
|||
|
Ext.Date.monthNames = ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"];
|
|||
|
|
|||
|
Ext.Date.dayNames = ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота"];
|
|||
|
}
|
|||
|
|
|||
|
if (Ext.util && Ext.util.Format) {
|
|||
|
Ext.apply(Ext.util.Format, {
|
|||
|
thousandSeparator: '.',
|
|||
|
decimalSeparator: ',',
|
|||
|
currencySign: '\u0434\u0435\u043d',
|
|||
|
// Macedonian Denar
|
|||
|
dateFormat: 'd.m.Y'
|
|||
|
});
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.view.View", {
|
|||
|
override: "Ext.view.View",
|
|||
|
emptyText: ""
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.grid.plugin.DragDrop", {
|
|||
|
override: "Ext.grid.plugin.DragDrop",
|
|||
|
dragText: "{0} избрани редици"
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.tab.Tab", {
|
|||
|
override: "Ext.tab.Tab",
|
|||
|
closeText: "Затвори tab"
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.form.field.Base", {
|
|||
|
override: "Ext.form.field.Base",
|
|||
|
invalidText: "Вредноста во ова поле е невалидна"
|
|||
|
});
|
|||
|
|
|||
|
// changing the msg text below will affect the LoadMask
|
|||
|
Ext.define("Ext.locale.mk.view.AbstractView", {
|
|||
|
override: "Ext.view.AbstractView",
|
|||
|
loadingText: "Вчитувам..."
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.picker.Date", {
|
|||
|
override: "Ext.picker.Date",
|
|||
|
todayText: "Денеска",
|
|||
|
minText: "Овој датум е пред најмалиот датум",
|
|||
|
maxText: "Овој датум е пред најголемиот датум",
|
|||
|
disabledDaysText: "",
|
|||
|
disabledDatesText: "",
|
|||
|
nextText: 'Следен месец (Control+Стрелка десно)',
|
|||
|
prevText: 'Претходен месец (Control+Стрелка лево)',
|
|||
|
monthYearText: 'Изберете месец (Control+Стрелка горе/Стрелка десно за менување година)',
|
|||
|
todayTip: "{0} (Spacebar)",
|
|||
|
format: "d.m.y"
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.toolbar.Paging", {
|
|||
|
override: "Ext.PagingToolbar",
|
|||
|
beforePageText: "Страница",
|
|||
|
afterPageText: "од {0}",
|
|||
|
firstText: "Прва Страница",
|
|||
|
prevText: "Претходна Страница",
|
|||
|
nextText: "Следна Страница",
|
|||
|
lastText: "Последна Страница",
|
|||
|
refreshText: "Освежи",
|
|||
|
displayMsg: "Прикажувам {0} - {1} од {2}",
|
|||
|
emptyMsg: 'Нема податоци за приказ'
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.form.field.Text", {
|
|||
|
override: "Ext.form.field.Text",
|
|||
|
minLengthText: "Минималната должина за ова поле е {0}",
|
|||
|
maxLengthText: "Максималната должина за ова поле е {0}",
|
|||
|
blankText: "Податоците во ова поле се потребни",
|
|||
|
regexText: "",
|
|||
|
emptyText: null
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.form.field.Number", {
|
|||
|
override: "Ext.form.field.Number",
|
|||
|
minText: "Минималната вредност за ова поле е {0}",
|
|||
|
maxText: "Максималната вредност за ова поле е {0}",
|
|||
|
nanText: "{0} не е валиден број"
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.form.field.Date", {
|
|||
|
override: "Ext.form.field.Date",
|
|||
|
disabledDaysText: "Неактивно",
|
|||
|
disabledDatesText: "Неактивно",
|
|||
|
minText: "Датумот во ова поле мора да биде пред {0}",
|
|||
|
maxText: "Датумот во ова поле мора да биде по {0}",
|
|||
|
invalidText: "{0} не е валиден датум - мора да биде во формат {1}",
|
|||
|
format: "d.m.y"
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.form.field.ComboBox", {
|
|||
|
override: "Ext.form.field.ComboBox",
|
|||
|
valueNotFoundText: undefined
|
|||
|
}, function() {
|
|||
|
Ext.apply(Ext.form.field.ComboBox.prototype.defaultListConfig, {
|
|||
|
loadingText: "Вчитувам..."
|
|||
|
});
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.form.field.VTypes", {
|
|||
|
override: "Ext.form.field.VTypes",
|
|||
|
emailText: 'Ова поле треба да биде e-mail адреса во формат "user@example.com"',
|
|||
|
urlText: 'Ова поле треба да биде URL во формат "http:/' + '/www.example.com"',
|
|||
|
alphaText: 'Ова поле треба да содржи само букви и _',
|
|||
|
alphanumText: 'Ова поле треба да содржи само букви, бројки и _'
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.grid.header.Container", {
|
|||
|
override: "Ext.grid.header.Container",
|
|||
|
sortAscText: "Сортирај Растечки",
|
|||
|
sortDescText: "Сортирај Опаѓачки",
|
|||
|
lockText: "Заклучи Колона",
|
|||
|
unlockText: "Отклучи колона",
|
|||
|
columnsText: "Колони"
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.grid.PropertyColumnModel", {
|
|||
|
override: "Ext.grid.PropertyColumnModel",
|
|||
|
nameText: "Име",
|
|||
|
valueText: "Вредност",
|
|||
|
dateFormat: "m.d.Y"
|
|||
|
});
|
|||
|
|
|||
|
Ext.define("Ext.locale.mk.window.MessageBox", {
|
|||
|
override: "Ext.window.MessageBox",
|
|||
|
buttonText: {
|
|||
|
ok: "Потврди",
|
|||
|
cancel: "Поништи",
|
|||
|
yes: "Да",
|
|||
|
no: "Не"
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
// This is needed until we can refactor all of the locales into individual files
|
|||
|
Ext.define("Ext.locale.mk.Component", {
|
|||
|
override: "Ext.Component"
|
|||
|
});
|
|||
|
|