Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-routing-foss4g/web/ext/src/locale/ext-lang-sr_RS.js @ 76

Revision 76, 5.6 KB checked in by djay, 12 years ago (diff)

Ajout du répertoire web

  • Property svn:executable set to *
Line 
1/*!
2 * Ext JS Library 3.4.0
3 * Copyright(c) 2006-2011 Sencha Inc.
4 * licensing@sencha.com
5 * http://www.sencha.com/license
6 */
7/*
8 * Serbian Cyrillic Translation
9 * by Čolovic Vladan (cyrillic, utf8 encoding)
10 * sr_RS (ex: sr_CS, sr_YU)
11 * 12 May 2007
12 */
13
14Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">УчОтаваЌ...</div>';
15
16if(Ext.View){
17   Ext.View.prototype.emptyText = "";
18}
19
20if(Ext.grid.GridPanel){
21   Ext.grid.GridPanel.prototype.ddText = "{0} ОзабраМОх реЎПва";
22}
23
24if(Ext.TabPanelItem){
25   Ext.TabPanelItem.prototype.closeText = "ЗатвПрО Пву »картОцу«";
26}
27
28if(Ext.form.Field){
29   Ext.form.Field.prototype.invalidText = "УМешеМа вреЎМПст МОје правОлМа";
30}
31
32if(Ext.LoadMask){
33    Ext.LoadMask.prototype.msg = "УчОтаваЌ...";
34}
35
36Date.monthNames = [
37   "ЈаМуар",
38   "Ѐебруар",
39   "Март",
40   "АпрОл",
41   "Мај",
42   "ЈуМ",
43   "Јул",
44   "Август",
45   "СептеЌбар",
46   "ОктПбар",
47   "НПвеЌбар",
48   "ДецеЌбар"
49];
50
51Date.dayNames = [
52   "НеЎеља",
53   "ППМеЎељак",
54   "УтПрак",
55   "СреЎа",
56   "Четвртак",
57   "Петак",
58   "СубПта"
59];
60
61if(Ext.MessageBox){
62   Ext.MessageBox.buttonText = {
63      ok     : "У реЎу",
64      cancel : "ОЎустаМО",
65      yes    : "Да",
66      no     : "Не"
67   };
68}
69
70if(Ext.util.Format){
71   Ext.util.Format.date = function(v, format){
72      if(!v) return "";
73      if(!(v instanceof Date)) v = new Date(Date.parse(v));
74      return v.dateFormat(format || "d.m.Y");
75   };
76}
77
78if(Ext.DatePicker){
79   Ext.apply(Ext.DatePicker.prototype, {
80      todayText         : "ДаМас",
81      minText           : "ДатуЌ је ОспреЎ МајЌањег ЎПзвПљеМПг ЎатуЌа",
82      maxText           : "ДатуЌ је МакПМ Мајвећег ЎПзвПљеМПг ЎатуЌа",
83      disabledDaysText  : "",
84      disabledDatesText : "",
85      monthNames        : Date.monthNames,
86      dayNames          : Date.dayNames,
87      nextText          : 'СлеЎећО Ќесец (Control+ДесМП)',
88      prevText          : 'ПретхПЎМО Ќесец (Control+ЛевП)',
89      monthYearText     : 'ИзаберОте Ќесец (Control+ГПре/ДПле за ОзбПр гПЎОМе)',
90      todayTip          : "{0} (РазЌакМОца)",
91      format            : "d.m.y",
92      startDay          : 1
93   });
94}
95
96if(Ext.PagingToolbar){
97   Ext.apply(Ext.PagingToolbar.prototype, {
98      beforePageText : "СтраМа",
99      afterPageText  : "ПЎ {0}",
100      firstText      : "Прва страМа",
101      prevText       : "ПретхПЎМа страМа",
102      nextText       : "СлеЎећа страМа",
103      lastText       : "ППслеЎња страМа",
104      refreshText    : "ОсвежО",
105      displayMsg     : "ПрОказаМа {0} - {1} ПЎ {2}",
106      emptyMsg       : 'НеЌаЌ шта прОказатО'
107   });
108}
109
110if(Ext.form.TextField){
111   Ext.apply(Ext.form.TextField.prototype, {
112      minLengthText : "МОМОЌалМа ЎужОМа ПвПг пПља је {0}",
113      maxLengthText : "МаксОЌалМа ЎужОМа ПвПг пПља је {0}",
114      blankText     : "ППље је ПбавезМП",
115      regexText     : "",
116      emptyText     : null
117   });
118}
119
120if(Ext.form.NumberField){
121   Ext.apply(Ext.form.NumberField.prototype, {
122      minText : "МОМОЌалМа вреЎМПст у пПљу је {0}",
123      maxText : "МаксОЌалМа вреЎМПст у пПљу је {0}",
124      nanText : "{0} МОје правОлаМ брПј"
125   });
126}
127
128if(Ext.form.DateField){
129   Ext.apply(Ext.form.DateField.prototype, {
130      disabledDaysText  : "ПасОвМП",
131      disabledDatesText : "ПасОвМП",
132      minText           : "ДатуЌ у ПвПЌ пПљу ЌПра бОтО МакПМ {0}",
133      maxText           : "ДатуЌ у ПвПЌ пПљу ЌПра бОтО пре {0}",
134      invalidText       : "{0} МОје правОлаМ ЎатуЌ - захтеваМО ПблОк је {1}",
135      format            : "d.m.y",
136      startDay          : 1
137   });
138}
139
140if(Ext.form.ComboBox){
141   Ext.apply(Ext.form.ComboBox.prototype, {
142      loadingText       : "УчОтаваЌ...",
143      valueNotFoundText : undefined
144   });
145}
146
147if(Ext.form.VTypes){
148   Ext.apply(Ext.form.VTypes, {
149      emailText    : 'ОвП пПље прОхвата e-mail аЎресу ОскључОвП у ПблОку "korisnik@domen.com"',
150      urlText      : 'ОвП пПље прОхвата URL аЎресу ОскључОвП у ПблОку "http:/'+'/www.domen.com"',
151      alphaText    : 'ОвП пПље ЌПже саЎржатО ОскључОвП слПва О зМак _',
152      alphanumText : 'ОвП пПље ЌПже саЎржатО саЌП слПва, брПјеве О зМак _'
153   });
154}
155
156if(Ext.grid.GridView){
157   Ext.apply(Ext.grid.GridView.prototype, {
158      sortAscText  : "РастућО реЎПслеЎ",
159      sortDescText : "ОпаЎајућО реЎПслеЎ",
160      lockText     : "Закључај кПлПМу",
161      unlockText   : "Откључај кПлПМу",
162      columnsText  : "КПлПМе"
163   });
164}
165
166if(Ext.grid.PropertyColumnModel){
167   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
168      nameText   : "НазОв",
169      valueText  : "ВреЎМПст",
170      dateFormat : "d.m.Y"
171   });
172}
173
174if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
175   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
176      splitTip            : "ППвућО за ОзЌеМу велОчОМе.",
177      collapsibleSplitTip : "ППвућО за ОзЌеМу велОчОМе. ДвПструкО клОк за сакрОвање."
178   });
179}
Note: See TracBrowser for help on using the repository browser.