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-tr.js @ 76

Revision 76, 7.9 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 * List compiled by mystix on the extjs.com forums.
9 * Thank you Mystix!
10 *
11 * Turkish translation by Alper YAZGAN
12 * 2008-01-24, 10:29 AM
13 *
14 * Updated to 2.2 by YargicX
15 * 2008-10-05, 06:22 PM
16 */
17
18Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">YÃŒkleniyor ...</div>';
19
20if(Ext.View){
21  Ext.View.prototype.emptyText = "";
22}
23
24if(Ext.grid.Grid){
25  Ext.grid.Grid.prototype.ddText = "Seçili satÃœr sayÃœsÃœ : {0}";
26}
27
28if(Ext.TabPanelItem){
29  Ext.TabPanelItem.prototype.closeText = "Sekmeyi kapat";
30}
31
32if(Ext.form.Field){
33  Ext.form.Field.prototype.invalidText = "Bu alandaki deðer geçersiz";
34}
35
36if(Ext.LoadMask){
37  Ext.LoadMask.prototype.msg = "YÃŒkleniyor ...";
38}
39
40Date.monthNames = [
41  "Ocak",
42  "Þşubat",
43  "Mart",
44  "Nisan",
45  "MayÃœs",
46  "Haziran",
47  "Temmuz",
48  "Aðustos",
49  "EylÃŒl",
50  "Ekim",
51  "KasÃœm",
52  "AralÃœk"
53];
54
55Date.getShortMonthName = function(month) {
56  return Date.monthNames[month].substring(0, 3);
57};
58
59Date.monthNumbers = {
60  Jan : 0,
61  Feb : 1,
62  Mar : 2,
63  Apr : 3,
64  May : 4,
65  Jun : 5,
66  Jul : 6,
67  Aug : 7,
68  Sep : 8,
69  Oct : 9,
70  Nov : 10,
71  Dec : 11
72};
73
74Date.getMonthNumber = function(name) {
75  return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
76};
77
78Date.dayNames = [
79  "Pazar",
80  "Pazartesi",
81  "SalÃœ",
82  "LJarߪamba",
83  "Perߪembe",
84  "Cuma",
85  "Cumartesi"
86];
87
88Date.shortDayNames = [
89  "Paz",
90  "Pzt",
91  "Sal",
92  "Çrߪ",
93  "Prß",
94  "Cum",
95  "Cmt"
96];
97
98Date.getShortDayName = function(day) {
99  return Date.shortDayNames[day];
100};
101
102if(Ext.MessageBox){
103  Ext.MessageBox.buttonText = {
104    ok     : "Tamam",
105    cancel : "Ä°ptal",
106    yes    : "Evet",
107    no     : "HayÃœr"
108  };
109}
110
111if(Ext.util.Format){
112  Ext.util.Format.date = function(v, format){
113    if(!v) return "";
114    if(!(v instanceof Date)) v = new Date(Date.parse(v));
115    return v.dateFormat(format || "d/m/Y");
116  };
117}
118
119if(Ext.DatePicker){
120  Ext.apply(Ext.DatePicker.prototype, {
121    todayText         : "BugÃŒn",
122    minText           : "Bu tarih izin verilen en kÌçÌk tarihten daha önce",
123    maxText           : "Bu tarih izin verilen en bÃŒyÃŒk tarihten daha sonra",
124    disabledDaysText  : "",
125    disabledDatesText : "",
126    monthNames        : Date.monthNames,
127    dayNames          : Date.dayNames,
128    nextText          : 'Gelecek Ay (Control+Right)',
129    prevText          : 'Önceki Ay (Control+Left)',
130    monthYearText     : 'Bir ay sÅžeçiniz (YÃœlÃœ artÃœrmak/azaltmak için Control+Up/Down)',
131    todayTip          : "{0} (Boߪluk Tuߪu - Spacebar)",
132    format            : "d/m/Y",
133    okText            : "&#160;Tamam&#160;",
134    cancelText        : "Ä°ptal",
135    startDay          : 1
136  });
137}
138
139if(Ext.PagingToolbar){
140  Ext.apply(Ext.PagingToolbar.prototype, {
141    beforePageText : "Sayfa",
142    afterPageText  : " / {0}",
143    firstText      : "Ä°lk Sayfa",
144    prevText       : "Önceki Sayfa",
145    nextText       : "Sonraki Sayfa",
146    lastText       : "Son Sayfa",
147    refreshText    : "Yenile",
148    displayMsg     : "Gösterilen {0} - {1} / {2}",
149    emptyMsg       : 'Gösterilebilecek veri yok'
150  });
151}
152
153if(Ext.form.TextField){
154  Ext.apply(Ext.form.TextField.prototype, {
155    minLengthText : "Girilen verinin uzunluðu en az {0} olabilir",
156    maxLengthText : "Girilen verinin uzunluðu en fazla {0} olabilir",
157    blankText     : "Bu alan boߪ bÃœrakÃœlamaz",
158    regexText     : "",
159    emptyText     : null
160  });
161}
162
163if(Ext.form.NumberField){
164  Ext.apply(Ext.form.NumberField.prototype, {
165    minText : "En az {0} girilebilir",
166    maxText : "En çok {0} girilebilir",
167    nanText : "{0} geçersiz bir sayÃœdÃœr"
168  });
169}
170
171if(Ext.form.DateField){
172  Ext.apply(Ext.form.DateField.prototype, {
173    disabledDaysText  : "Disabled",
174    disabledDatesText : "Disabled",
175    minText           : "Bu tarih, {0} tarihinden daha sonra olmalÃœdÃœr", 
176    maxText           : "Bu tarih, {0} tarihinden daha önce olmalÃœdÃœr",
177    invalidText       : "{0} geçersiz bir tarihdir - tarih formatÃœ {1} ߪeklinde olmalÃœdÃœr",
178    format            : "d/m/Y",
179    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|d|Y.m.d|Y-m-d|Y/m/d",
180    startDay          : 1
181  });
182}
183
184if(Ext.form.ComboBox){
185  Ext.apply(Ext.form.ComboBox.prototype, {
186    loadingText       : "YÃŒkleniyor ...",
187    valueNotFoundText : undefined
188  });
189}
190
191if(Ext.form.VTypes){
192        Ext.form.VTypes["emailText"]='Bu alan "user@example.com" ߪeklinde elektronik posta formatÃœnda olmalÃœdÃœr';
193        Ext.form.VTypes["urlText"]='Bu alan "http://www.example.com" ߪeklinde URL adres formatÃœnda olmalÃœdÃœr';
194        Ext.form.VTypes["alphaText"]='Bu alan sadece harf ve _ içermeli';
195        Ext.form.VTypes["alphanumText"]='Bu alan sadece harf, sayÃœ ve _ içermeli';
196}
197
198if(Ext.form.HtmlEditor){
199  Ext.apply(Ext.form.HtmlEditor.prototype, {
200    createLinkText : 'LÃŒtfen bu baðlantÃœ için gerekli URL adresini giriniz:',
201    buttonTips : {
202      bold : {
203        title: 'KalÃœn(Bold) (Ctrl+B)',
204        text: 'Þşeçili yazÃœyÃœ kalÃœn yapar.',
205        cls: 'x-html-editor-tip'
206      },
207      italic : {
208        title: 'Ä°talik(Italic) (Ctrl+I)',
209        text: 'Þşeçili yazÃœyÃœ italik yapar.',
210        cls: 'x-html-editor-tip'
211      },
212      underline : {
213        title: 'Alt Çizgi(Underline) (Ctrl+U)',
214        text: 'Þşeçili yazÃœnÃœn altÃœnÃœ çizer.',
215        cls: 'x-html-editor-tip'
216      },
217      increasefontsize : {
218        title: 'Fontu bÃŒyÃŒlt',
219        text: 'YazÃœ fontunu bÃŒyÃŒtÃŒr.',
220        cls: 'x-html-editor-tip'
221      },
222      decreasefontsize : {
223        title: 'Fontu kÌçÌlt',
224        text: 'YazÃœ fontunu kÌçÌltÃŒr.',
225        cls: 'x-html-editor-tip'
226      },
227      backcolor : {
228        title: 'Arka Plan Rengi',
229        text: 'Seçili yazÃœnÃœn arka plan rengini deðiߪtir.',
230        cls: 'x-html-editor-tip'
231      },
232      forecolor : {
233        title: 'YazÃœ Rengi',
234        text: 'Seçili yazÃœnÃœn rengini deðiߪtir.',
235        cls: 'x-html-editor-tip'
236      },
237      justifyleft : {
238        title: 'Sola Daya',
239        text: 'YazÃœyÃœ sola daya.',
240        cls: 'x-html-editor-tip'
241      },
242      justifycenter : {
243        title: 'Ortala',
244        text: 'YazÃœyÃœ editörde ortala.',
245        cls: 'x-html-editor-tip'
246      },
247      justifyright : {
248        title: 'Saða daya',
249        text: 'YazÃœyÃœ saða daya.',
250        cls: 'x-html-editor-tip'
251      },
252      insertunorderedlist : {
253        title: 'NoktalÃœ Liste',
254        text: 'NoktalÃœ listeye baߪla.',
255        cls: 'x-html-editor-tip'
256      },
257      insertorderedlist : {
258        title: 'NumaralÃœ Liste',
259        text: 'NumaralÃœ lisyeye baߪla.',
260        cls: 'x-html-editor-tip'
261      },
262      createlink : {
263        title: 'Web Adresi(Hyperlink)',
264        text: 'Seçili yazÃœyÃœ web adresi(hyperlink) yap.',
265        cls: 'x-html-editor-tip'
266      },
267      sourceedit : {
268        title: 'Kaynak kodu DÃŒzenleme',
269        text: 'Kaynak kodu dÃŒzenleme moduna geç.',
270        cls: 'x-html-editor-tip'
271      }
272    }
273  });
274}
275
276if(Ext.grid.GridView){
277  Ext.apply(Ext.grid.GridView.prototype, {
278    sortAscText  : "Artan sÃœrada sÃœrala",
279    sortDescText : "Azalan sÃœrada sÃœrala",
280    lockText     : "Kolonu kilitle",
281    unlockText   : "Kolon kilidini kaldÃœr",
282    columnsText  : "Kolonlar"
283  });
284}
285
286if(Ext.grid.GroupingView){
287  Ext.apply(Ext.grid.GroupingView.prototype, {
288    emptyGroupText : '(Yok)',
289    groupByText    : 'Bu Alana Göre Grupla',
290    showGroupsText : 'Gruplar Halinde Göster'
291  });
292}
293
294if(Ext.grid.PropertyColumnModel){
295  Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
296    nameText   : "Ad",
297    valueText  : "Deðer",
298    dateFormat : "d/m/Y"
299  });
300}
301
302if(Ext.layout.BorderLayout.SplitRegion){
303  Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
304    splitTip            : "Yeniden boyutlandÃœrmak için sÃŒrÃŒkle.",
305    collapsibleSplitTip : "Yeniden boyutlandÃœrmak için sÃŒrÃŒkle. Saklamak için çift tÃœkla."
306  });
307}
Note: See TracBrowser for help on using the repository browser.