annotate trunk/src/lang_tr.d @ 338:63c6afb915f7

- Made some corrections to the message catalogs. - Added functions for printing help messages.
author aziz
date Wed, 22 Aug 2007 15:53:04 +0000
parents 074b5ebe17c7
children 3ac651ea83fb
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.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
23 "heks dizginin içindeki sayılar çift olmalılar.",
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.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
33 "heksadesimal çıkış serisin sayıları az geliyor.",
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.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
46 "geçersiz heks rakam; en azında bir heks sayı gerekdir.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
47 "geçersiz binari rakam; en azında bir binari sayı gerekdir.",
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.",
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
55
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
56 // Help messages:
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
57 `dil v{1}
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
58 Copyright (c) 2007, Aziz Köksal. Lisans GPL3.
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
59
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
60 Komutlar:
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
61 {2}
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
62 Bir belirli komut'a yardım edinmek için 'dil help <komut>' yazınız.
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
63
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
64 Bu yazılım {3} v{4} ile {5} tarihinde derletilmiş.`,
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
65 `Bir D kaynak kodundan XML yada HTML dosyası oluştur.
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
66 Kullanım:
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
67 dil gen dosya.d [Seçenekler]
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
68
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
69 Seçenekler:
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
70 --syntax : söz dizimi için etiketler yazdır
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
71 --xml : XML biçimi kullan (varsayılır)
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
72 --html : HTML biçimi kullan
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
73
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
74 Örnek:
338
63c6afb915f7 - Made some corrections to the message catalogs.
aziz
parents: 336
diff changeset
75 dil gen Parser.d --html --syntax > Parser.html`,
336
074b5ebe17c7 - Added Turkish translation of the compiler messages.
aziz
parents:
diff changeset
76 ];