-
Notifications
You must be signed in to change notification settings - Fork 40
/
libretro_core_options_intl.h
155 lines (129 loc) · 3.89 KB
/
libretro_core_options_intl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#ifndef LIBRETRO_CORE_OPTIONS_INTL_H__
#define LIBRETRO_CORE_OPTIONS_INTL_H__
#if defined(_MSC_VER) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
/* https://support.microsoft.com/en-us/kb/980263 */
#pragma execution_character_set("utf-8")
#pragma warning(disable:4566)
#endif
#include <libretro.h>
/*
********************************
* VERSION: 1.3
********************************
*
* - 1.3: Move translations to libretro_core_options_intl.h
* - libretro_core_options_intl.h includes BOM and utf-8
* fix for MSVC 2010-2013
* - Added HAVE_NO_LANGEXTRA flag to disable translations
* on platforms/compilers without BOM support
* - 1.2: Use core options v1 interface when
* RETRO_ENVIRONMENT_GET_CORE_OPTIONS_VERSION is >= 1
* (previously required RETRO_ENVIRONMENT_GET_CORE_OPTIONS_VERSION == 1)
* - 1.1: Support generation of core options v0 retro_core_option_value
* arrays containing options with a single value
* - 1.0: First commit
*/
#ifdef __cplusplus
extern "C" {
#endif
/*
********************************
* Core Option Definitions
********************************
*/
/* RETRO_LANGUAGE_JAPANESE */
/* RETRO_LANGUAGE_FRENCH */
/* RETRO_LANGUAGE_SPANISH */
/* RETRO_LANGUAGE_GERMAN */
/* RETRO_LANGUAGE_ITALIAN */
/* RETRO_LANGUAGE_DUTCH */
/* RETRO_LANGUAGE_PORTUGUESE_BRAZIL */
/* RETRO_LANGUAGE_PORTUGUESE_PORTUGAL */
/* RETRO_LANGUAGE_RUSSIAN */
/* RETRO_LANGUAGE_KOREAN */
/* RETRO_LANGUAGE_CHINESE_TRADITIONAL */
/* RETRO_LANGUAGE_CHINESE_SIMPLIFIED */
/* RETRO_LANGUAGE_ESPERANTO */
/* RETRO_LANGUAGE_POLISH */
/* RETRO_LANGUAGE_VIETNAMESE */
/* RETRO_LANGUAGE_ARABIC */
/* RETRO_LANGUAGE_GREEK */
/* RETRO_LANGUAGE_TURKISH */
struct retro_core_option_definition option_defs_tr[] = {
{
"vb_3dmode",
"3B modu",
"3B modunu seçin. Anaglif - klasik çift lens renkli camlarla birlikte kullanılır. Cyberscope - CyberScope ile kullanılmak üzere tasarlanan 3B cihaz. sidebyside - sol göz resmi solda ve sağ göz resmi sağda görüntülenir. vli - Dikey çizgiler sol ve sağ görünüm arasında değişir. hli - Yatay çizgiler sol ve sağ görünüm arasında değişir.",
{
{ "anaglyph", "Anaglif" },
{ "cyberscope", NULL },
{ "side-by-side", NULL },
{ "vli", NULL},
{ "hli", NULL},
{ NULL, NULL },
},
"anaglyph",
},
{
"vb_anaglyph_preset",
"Anaglif Ön ayarı",
"Anaglif önceden ayarlanmış renkler.",
{
{ "disabled", "devre dışı" },
{ "red & blue", NULL },
{ "red & cyan", NULL },
{ "red & electric cyan", NULL },
{ "green & magenta", NULL },
{ "yellow & blue", NULL },
{ NULL, NULL},
},
"disabled",
},
{
"vb_color_mode",
"Palet",
"",
{
{ "black & red", NULL },
{ "black & white", NULL },
{ "black & blue", NULL },
{ "black & cyan", NULL },
{ "black & electric cyan", NULL },
{ "black & green", NULL },
{ "black & magenta", NULL },
{ "black & yellow", NULL },
{ NULL, NULL},
},
"black & red",
},
{
"vb_right_analog_to_digital",
"Dijital sağ analog",
"",
{
{ "disabled", "devre dışı" },
{ "enabled", "etkin" },
{ "invert x", NULL },
{ "invert y", NULL },
{ "invert both", NULL },
{ NULL, NULL },
},
"disabled",
},
{
"vb_cpu_emulation",
"CPU emülasyonu (Yeniden başlatma gerekir)",
"Daha hızlı ve doğru (daha yavaş) emülasyon arasında seçim yapın.",
{
{ "accurate", "doğru" },
{ "fast", "hızlı" },
{ NULL, NULL},
},
"fast",
},
{ NULL, NULL, NULL, { NULL, NULL }, NULL },
};
#ifdef __cplusplus
}
#endif
#endif