annotate trunk/src/lang_tr.d @ 348:206d305b2706

- Corrected some Turkish translations.
author aziz
date Fri, 24 Aug 2007 22:55:02 +0000
parents 10719a796554
children a0711c57c1db
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
1 /++
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
2 Author: Aziz Köksal
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
3 License: GPL3
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
4 +/
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
5
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
6 string[] messages = [
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
7 // Lexer messages:
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
8 "geçersiz Unikod karakteri.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
9 "geçersiz UTF-8 serisi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
10 // ''
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
11 "kapanmamış karakter sabiti.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
12 "boş karakter sabiti.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
13 // #line
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
14 "'#' karakter'den sonra 'line' beklendi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
15 "'#line''den sonra rakam beklendi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
16 `filespec dizgisi beklendi (e.g. "yol\dosya".)`,
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
17 "kapanmamış filespec dizgisi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
18 "özel belirtici'den (special token) sonra yeni bir satır beklendi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
19 // ""
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
20 "kapanmamış çift tırnak dizgisi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
21 // x""
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
22 "heks sayı olmayan karakter '{1}' heks dizgisi içinde bulundu.",
348
206d305b2706 - Corrected some Turkish translations.
aziz
parents: 345
diff changeset
23 "heks dizginin içindeki sayılar çifter çifter olmalıdır.",
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
24 "kapanmamış heks dizgisi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
25 // /* */ /+ +/
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
26 "kapanmamış blok açıklaması (/* */).",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
27 "kapanmamış iç içe koyulabilen açıklaması (/+ +/).",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
28 // `` r""
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
29 "kapanmamış çiğ dizgisi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
30 "kapanmamış ters tırnak dizgisi.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
31 // \x \u \U
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
32 "tanımlanmamış çıkış serisi bulundu.",
348
206d305b2706 - Corrected some Turkish translations.
aziz
parents: 345
diff changeset
33 "heksadesimal çıkış serisi sayıları yeterli değil.",
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
34 // \&[a-zA-Z][a-zA-Z0-9]+;
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
35 "tanımlanmamış HTML varlık '{1}'",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
36 "kapanmamış HTML varlık.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
37 "HTML varlık bir harf ile başlamalı.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
38 // integer overflows
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
39 "desimal rakamın bit işareti taşdı.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
40 "desimal rakam taşması.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
41 "heksadesimal rakam taşması.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
42 "binari rakam taşması.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
43 "oktal rakam taşması.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
44 "float rakam taşması.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
45 "8 ve 9 sayılar oktal rakamlar'da geçersizdir.",
348
206d305b2706 - Corrected some Turkish translations.
aziz
parents: 345
diff changeset
46 "geçersiz heks rakam; minimum bir heks sayı gereklidir.",
206d305b2706 - Corrected some Turkish translations.
aziz
parents: 345
diff changeset
47 "geçersiz binari rakam; minimum bir binari sayı gereklidir.",
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
48 "bir heksadesimal float rakamın üsü gereklidir.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
49 "heksadesimal float rakamın üsün'de desimal sayılar eksik.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
50 "üsler desimal sayı ile başlamalı.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
51
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
52 // Parser messages
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
53 "'{1}' beklendi, ama '{2}' bulundu.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
54 "'{1}' lüzumsuz.",
341
3ac651ea83fb - Fix: created TemplateAliasParameter instead of TemplateTypeParameter.
aziz
parents: 338
diff changeset
55 "şablon tuple parametre son sırada olmalı.",
342
f13d551d7c4f - Added error messages MID.InContract and MID.OutContract.
aziz
parents: 341
diff changeset
56 "fonksiyonun 'in' kontratı daha önceden ayrıştırılmış.",
f13d551d7c4f - Added error messages MID.InContract and MID.OutContract.
aziz
parents: 341
diff changeset
57 "fonksiyonun 'out' kontratı daha önceden ayrıştırılmış.",
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
58
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
59 // Help messages:
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
60 `dil v{1}
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
61 Copyright (c) 2007, Aziz Köksal. Lisans GPL3.
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
62
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
63 Komutlar:
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
64 {2}
348
206d305b2706 - Corrected some Turkish translations.
aziz
parents: 345
diff changeset
65 Belirli komut'a yardım edinmek için 'dil help <komut>' yazınız.
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
66
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
67 Bu yazılım {3} v{4} ile {5} tarihinde derletilmiş.`,
345
10719a796554 - Changed a word in a Turkish sentence.
aziz
parents: 342
diff changeset
68 `Bir D kaynak kodundan XML veya HTML dosyası oluştur.
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
69 Kullanım:
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
70 dil gen dosya.d [Seçenekler]
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
71
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
72 Seçenekler:
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
73 --syntax : söz dizimi için etiketler yazdır
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
74 --xml : XML biçimi kullan (varsayılır)
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
75 --html : HTML biçimi kullan
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
76
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
77 Örnek:
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
78 dil gen Parser.d --html --syntax > Parser.html`,
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
79 ];