summaryrefslogtreecommitdiff
path: root/src/clouds.cpp
blob: 146eeb8310d9ecb09f8bfe03dadade7fd4f51c4a (plain)
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
Minetest-c55
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include "clouds.h"
#include "noise.h"
#include "constants.h"
#include "debug.h"
#include "main.h" // For g_profiler and g_settings
#include "profiler.h"
#include "settings.h"

Clouds::Clouds(
		scene::ISceneNode* parent,
		scene::ISceneManager* mgr,
		s32 id,
		u32 seed
):
	scene::ISceneNode(parent, mgr, id),
	m_seed(seed),
	m_camera_pos(0,0),
	m_time(0)
{
	m_material.setFlag(video::EMF_LIGHTING, false);
	//m_material.setFlag(video::EMF_BACK_FACE_CULLING, false);
	m_material.setFlag(video::EMF_BACK_FACE_CULLING, true);
	m_material.setFlag(video::EMF_BILINEAR_FILTER, false);
	m_material.setFlag(video::EMF_FOG_ENABLE, true);
	m_material.setFlag(video::EMF_ANTI_ALIASING, true);
	//m_material.MaterialType = video::EMT_TRANSPARENT_VERTEX_ALPHA;
	m_material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;

	m_cloud_y = BS*100;
	//m_cloud_y = BS*50;

	m_box = core::aabbox3d<f32>(-BS*1000000,m_cloud_y-BS,-BS*1000000,
			BS*1000000,m_cloud_y+BS,BS*1000000);

}

Clouds::~Clouds()
{
}

void Clouds::OnRegisterSceneNode()
{
	if(IsVisible)
	{
		SceneManager->registerNodeForRendering(this, scene::ESNRP_TRANSPARENT);
		//SceneManager->registerNodeForRendering(this, scene::ESNRP_SOLID);
	}

	ISceneNode::OnRegisterSceneNode();
}

#define MYROUND(x) (x > 0.0 ? (int)x : (int)x - 1)

void Clouds::render()
{
	video::IVideoDriver* driver = SceneManager->getVideoDriver();

	if(SceneManager->getSceneNodeRenderPass() != scene::ESNRP_TRANSPARENT)
	//if(SceneManager->getSceneNodeRenderPass() != scene::ESNRP_SOLID)
		return;

	ScopeProfiler sp(g_profiler, "Rendering of clouds, avg", SPT_AVG);
	
	bool enable_3d = g_settings->getBool("enable_3d_clouds");
	int num_faces_to_draw = enable_3d ? 6 : 1;
	
	m_material.setFlag(video::EMF_BACK_FACE_CULLING, enable_3d);

	driver->setTransform(video::ETS_WORLD, AbsoluteTransformation);
	driver->setMaterial(m_material);
	
	/*
		Clouds move from X+ towards X-
	*/

	const s16 cloud_radius_i = 12;
	const float cloud_size = BS*64;
	const v2f cloud_speed(0, -BS*2);
	
	const float cloud_full_radius = cloud_size * cloud_radius_i;
	
	// Position of cloud noise origin in world coordinates
	v2f world_cloud_origin_pos_f = m_time*cloud_speed;
	// Position of cloud noise origin from the camera
	v2f cloud_origin_from_camera_f = world_cloud_origin_pos_f - m_camera_pos;
	// The center point of drawing in the noise
	v2f center_of_drawing_in_noise_f = -cloud_origin_from_camera_f;
	// The integer center point of drawing in the noise
	v2s16 center_of_drawing_in_noise_i(
		MYROUND(center_of_drawing_in_noise_f.X / cloud_size),
		MYROUND(center_of_drawing_in_noise_f.Y / cloud_size)
	);
	// The world position of the integer center point of drawing in the noise
	v2f world_center_of_drawing_in_noise_f = v2f(
		center_of_drawing_in_noise_i.X * cloud_size,
		center_of_drawing_in_noise_i.Y * cloud_size
	) + world_cloud_origin_pos_f;

	/*video::SColor c_top(128,b*240,b*240,b*255);
	video::SColor c_side_1(128,b*230,b*230,b*255);
	video::SColor c_side_2(128,b*220,b*220,b*245);
	video::SColor c_bottom(128,b*205,b*205,b*230);*/
	video::SColorf c_top_f(m_color);
	video::SColorf c_side_1_f(m_color);
	video::SColorf c_side_2_f(m_color);
	video::SColorf c_bottom_f(m_color);
	c_side_1_f.r *= 0.95;
	c_side_1_f.g *= 0.95;
	c_side_1_f.b *= 0.95;
	c_side_2_f.r *= 0.90;
	c_side_2_f.g *= 0.90;
	c_side_2_f.b *= 0.90;
	c_bottom_f.r *= 0.80;
	c_bottom_f.g *= 0.80;
	c_bottom_f.b *= 0.80;
	c_top_f.a = 0.9;
	c_side_1_f.a = 0.9;
	c_side_2_f.a = 0.9;
	c_bottom_f.a = 0.9;
	video::SColor c_top = c_top_f.toSColor();
	video::SColor c_side_1 = c_side_1_f.toSColor();
	video::SColor c_side_2 = c_side_2_f.toSColor();
	video::SColor c_bottom = c_bottom_f.toSColor();

	// Get fog parameters for setting them back later
	video::SColor fog_color(0,0,0,0);
	video::E_FOG_TYPE fog_type = video::EFT_FOG_LINEAR;
	f32 fog_start = 0;
	f32 fog_end = 0;
	f32 fog_density = 0;
	bool fog_pixelfog = false;
	bool fog_rangefog = false;
	driver->getFog(fog_color, fog_type, fog_start, fog_end, fog_density,
			fog_pixelfog, fog_rangefog);
	
	// Set our own fog
	driver->setFog(fog_color, fog_type, cloud_full_radius * 0.5,
			cloud_full_radius*1.2, fog_density, fog_pixelfog, fog_rangefog);

	// Read noise

	bool *grid = new bool[cloud_radius_i*2*cloud_radius_i*2];

	for(s16 zi=-cloud_radius_i; zi<cloud_radius_i; zi++)
	for(s16 xi=-cloud_radius_i; xi<cloud_radius_i; xi++)
	{
		u32 i = (zi+cloud_radius_i)*cloud_radius_i*2 + xi+cloud_radius_i;

		v2s16 p_in_noise_i(
			xi+center_of_drawing_in_noise_i.X,
			zi+center_of_drawing_in_noise_i.Y
		);

#if 0
		double noise = noise2d_perlin_abs(
				(float)p_in_noise_i.X*cloud_size/BS/200,
				(float)p_in_noise_i.Y*cloud_size/BS/200,
				m_seed, 3, 0.4);
		grid[i] = (noise >= 0.80);
#endif
#if 1
		double noise = noise2d_perlin(
				(float)p_in_noise_i.X*cloud_size/BS/200,
				(float)p_in_noise_i.Y*cloud_size/BS/200,
				m_seed, 3, 0.5);
		grid[i] = (noise >= 0.4);
#endif
	}

#define GETINDEX(x, z, radius) (((z)+(radius))*(radius)*2 + (x)+(radius))
#define CONTAINS(x, z, radius) \
	((x) >= -(radius) && (x) < (radius) && (z) >= -(radius) && (z) < (radius))

	for(s16 zi0=-cloud_radius_i; zi0<cloud_radius_i; zi0++)
	for(s16 xi0=-cloud_radius_i; xi0<cloud_radius_i; xi0++)
	{
		s16 zi = zi0;
		s16 xi = xi0;
		// Draw from front to back (needed for transparency)
		/*if(zi <= 0)
			zi = -cloud_radius_i - zi;
		if(xi <= 0)
			xi = -cloud_radius_i - xi;*/
		// Draw from back to front
		if(zi >= 0)
			zi = cloud_radius_i - zi - 1;
		if(xi >= 0)
			xi = cloud_radius_i - xi - 1;

		u32 i = GETINDEX(xi, zi, cloud_radius_i);

		if(grid[i] == false)
			continue;

		v2f p0 = v2f(xi,zi)*cloud_size + world_center_of_drawing_in_noise_f;

		video::S3DVertex v[4] = {
			video::S3DVertex(0,0,0, 0,0,0, c_top, 0, 1),
			video::S3DVertex(0,0,0, 0,0,0, c_top, 1, 1),
			video::S3DVertex(0,0,0, 0,0,0, c_top, 1, 0),
			video::S3DVertex(0,0,0, 0,0,0, c_top, 0, 0)
		};

		/*if(zi <= 0 && xi <= 0){
			v[0].Color.setBlue(255);
			v[1].Color.setBlue(255);
			v[2].Color.setBlue(255);
			v[3].Color.setBlue(255);
		}*/

		f32 rx = cloud_size/2;
		f32 ry = 8*BS;
		f32 rz = cloud_size/2;

		for(int i=0; i<num_faces_to_draw; i++)
		{
			switch(i)
			{
			case 0:	// top
				for(int j=0;j<4;j++){
					v[j].Normal.set(0,1,0);
				}
				v[0].Pos.set(-rx, ry,-rz);
				v[1].Pos.set(-rx, ry, rz);
				v[2].Pos.set( rx, ry, rz);
				v[3].Pos.set( rx, ry,-rz);
				break;
			case 1: // back
				if(CONTAINS(xi, zi-1, cloud_radius_i)){
					u32 j = GETINDEX(xi, zi-1, cloud_radius_i);
					if(grid[j])
						continue;
				}
				for(int j=0;j<4;j++){
					v[j].Color = c_side_1;
					v[j].Normal.set(0,0,-1);
				}
				v[0].Pos.set(-rx, ry,-rz);
				v[1].Pos.set( rx, ry,-rz);
				v[2].Pos.set( rx,-ry,-rz);
				v[3].Pos.set(-rx,-ry,-rz);
				break;
			case 2: //right
				if(CONTAINS(xi+1, zi, cloud_radius_i)){
					u32 j = GETINDEX(xi+1, zi, cloud_radius_i);
					if(grid[j])
						continue;
				}
				for(int j=0;j<4;j++){
					v[j].Color = c_side_2;
					v[j].Normal.set(1,0,0);
				}
				v[0].Pos.set( rx, ry,-rz);
				v[1].Pos.set( rx, ry, rz);
				v[2].Pos.set( rx,-ry, rz);
				v[3].Pos.set( rx,-ry,-rz);
				break;
			case 3: // front
				if(CONTAINS(xi, zi+1, cloud_radius_i)){
					u32 j = GETINDEX(xi, zi+1, cloud_radius_i);
					if(grid[j])
						continue;
				}
				for(int j=0;j<4;j++){
					v[j].Color = c_side_1;
					v[j].Normal.set(0,0,-1);
				}
				v[0].Pos.set( rx, ry, rz);
				v[1].Pos.set(-rx, ry, rz);
				v[2].Pos.set(-rx,-ry, rz);
				v[3].Pos.set( rx,-ry, rz);
				break;
			case 4: // left
				if(CONTAINS(xi-1, zi, cloud_radius_i)){
					u32 j = GETINDEX(xi-1, zi, cloud_radius_i);
					if(grid[j])
						continue;
				}
				for(int j=0;j<4;j++){
					v[j].Color = c_side_2;
					v[j].Normal.set(-1,0,0);
				}
				v[0].Pos.set(-rx, ry, rz);
				v[1].Pos.set(-rx, ry,-rz);
				v[2].Pos.set(-rx,-ry,-rz);
				v[3].Pos.set(-rx,-ry, rz);
				break;
			case 5: // bottom
				for(int j=0;j<4;j++){
					v[j].Color = c_bottom;
					v[j].Normal.set(0,-1,0);
				}
				v[0].Pos.set( rx,-ry, rz);
				v[1].Pos.set(-rx,-ry, rz);
				v[2].Pos.set(-rx,-ry,-rz);
				v[3].Pos.set( rx,-ry,-rz);
				break;
			}

			v3f pos(p0.X, m_cloud_y, p0.Y);

			for(u16 i=0; i<4; i++)
				v[i].Pos += pos;
			u16 indices[] = {0,1,2,2,3,0};
			driver->drawVertexPrimitiveList(v, 4, indices, 2,
					video::EVT_STANDARD, scene::EPT_TRIANGLES, video::EIT_16BIT);
		}
	}

	delete[] grid;
	
	// Restore fog settings
	driver->setFog(fog_color, fog_type, fog_start, fog_end, fog_density,
			fog_pixelfog, fog_rangefog);
}

void Clouds::step(float dtime)
{
	m_time += dtime;
}

void Clouds::update(v2f camera_p, video::SColorf color)
{
	m_camera_pos = camera_p;
	m_color = color;
	//m_brightness = brightness;
	//dstream<<"m_brightness="<<m_brightness<<std::endl;
}

='#n1707'>1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR mahmutelmas06@gmail.com, 2015.
msgid ""
msgstr ""
"Project-Id-Version: 0.1.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-30 06:18+0200\n"
"PO-Revision-Date: 2015-10-27 16:46+0200\n"
"Last-Translator: PilzAdam <PilzAdam@minetest.net>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/minetest/"
"minetest/tr/>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 2.5-dev\n"
"X-Poedit-Language: Turkish\n"
"X-Poedit-Basepath: \n"

#: builtin/fstk/ui.lua
msgid "An error occured in a Lua script, such as a mod:"
msgstr "Lua scriptte bir hata meydana geldi:"

#: builtin/fstk/ui.lua
msgid "An error occured:"
msgstr "Bir hata oluştu:"

#: builtin/fstk/ui.lua
#, fuzzy
msgid "Main menu"
msgstr "Ana menu"

#: builtin/fstk/ui.lua builtin/mainmenu/store.lua
msgid "Ok"
msgstr "Tamam"

#: builtin/fstk/ui.lua
msgid "Reconnect"
msgstr "Bağlan"

#: builtin/fstk/ui.lua
msgid "The server has requested a reconnect:"
msgstr "Bu sunucu yeniden bağlanma isteğinde bulundu:"

#: builtin/mainmenu/common.lua src/game.cpp
msgid "Loading..."
msgstr "Yükleniyor..."

#: builtin/mainmenu/common.lua
msgid "Protocol version mismatch. "
msgstr "Protokol sürümü uyumsuz. "

#: builtin/mainmenu/common.lua
msgid "Server enforces protocol version $1. "
msgstr "Sunucu protokol sürümü $1 istiyor. "

#: builtin/mainmenu/common.lua
msgid "Server supports protocol versions between $1 and $2. "
msgstr "Bu sunucu $1 ve $2 arası tüm protokol sürümlerini destekler. "

#: builtin/mainmenu/common.lua
msgid "Try reenabling public serverlist and check your internet connection."
msgstr ""
"Sunucu listesini tekrar etkinleştirmeyi deneyin ve internet bağlantınızı "
"kontrol edin."

#: builtin/mainmenu/common.lua
msgid "We only support protocol version $1."
msgstr "Yalnızca  $1 protokol sürümü desteklenmektedir."

#: builtin/mainmenu/common.lua
msgid "We support protocol versions between version $1 and $2."
msgstr "Yalnızca $1 ve $2 arası protokol sürümleri desteklenmektedir."

#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua
#: builtin/mainmenu/dlg_delete_mod.lua builtin/mainmenu/dlg_delete_world.lua
#: builtin/mainmenu/dlg_rename_modpack.lua
#: builtin/mainmenu/dlg_settings_advanced.lua src/guiKeyChangeMenu.cpp
#: src/keycode.cpp
msgid "Cancel"
msgstr "Vazgeç"

#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_mods.lua
msgid "Depends:"
msgstr "Bağımlılıklar :"

#: builtin/mainmenu/dlg_config_world.lua
msgid "Disable MP"
msgstr "Paketi Kapat"

#: builtin/mainmenu/dlg_config_world.lua
msgid "Enable MP"
msgstr "Paketi Aç"

#: builtin/mainmenu/dlg_config_world.lua
msgid "Enable all"
msgstr "Hepsini etkinleştir"

#: builtin/mainmenu/dlg_config_world.lua
msgid ""
"Failed to enable mod \"$1\" as it contains disallowed characters. Only "
"chararacters [a-z0-9_] are allowed."
msgstr ""
"Geçersiz karakterler içerdiği için \"$1\" modu etkinleştirilemiyor. İzin "
"verilen karakterler [a-z0-9_]."

#: builtin/mainmenu/dlg_config_world.lua
msgid "Hide Game"
msgstr "Oyunu Gizle"

#: builtin/mainmenu/dlg_config_world.lua
msgid "Hide mp content"
msgstr "Detayları gizle"

#: builtin/mainmenu/dlg_config_world.lua
msgid "Mod:"
msgstr "Eklnt:"

#: builtin/mainmenu/dlg_config_world.lua
#: builtin/mainmenu/dlg_settings_advanced.lua src/guiKeyChangeMenu.cpp
msgid "Save"
msgstr "Kaydet"

#: builtin/mainmenu/dlg_config_world.lua
msgid "World:"
msgstr "Dünya:"

#: builtin/mainmenu/dlg_config_world.lua
msgid "enabled"
msgstr "Etkinleştirildi"

#: builtin/mainmenu/dlg_create_world.lua
msgid "A world named \"$1\" already exists"
msgstr " \"$1\" isimli dünya zaten var"

#: builtin/mainmenu/dlg_create_world.lua
msgid "Create"
msgstr "Oluştur"

#: builtin/mainmenu/dlg_create_world.lua
msgid "Download a subgame, such as minetest_game, from minetest.net"
msgstr "Minetest.net adresinden bir oyun modu indirin"

#: builtin/mainmenu/dlg_create_world.lua
msgid "Download one from minetest.net"
msgstr "Minetest.net adresinden indirin"

#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
msgid "Game"
msgstr "Oyun"

#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
msgid "Mapgen"
msgstr "Mapgen"

#: builtin/mainmenu/dlg_create_world.lua
msgid "No worldname given or no game selected"
msgstr "Dünya seçilmedi ya da adlandırılmadı"

#: builtin/mainmenu/dlg_create_world.lua
msgid "Seed"
msgstr "Çekirdek"

#: builtin/mainmenu/dlg_create_world.lua
msgid "Warning: The minimal development test is meant for developers."
msgstr "Uyarı : Minimal Development Test geliştiriciler içindir."

#: builtin/mainmenu/dlg_create_world.lua
msgid "World name"
msgstr "Dünya adı"

#: builtin/mainmenu/dlg_create_world.lua
msgid "You have no subgames installed."
msgstr "Ek bir oyun modu yüklü değil."

#: builtin/mainmenu/dlg_delete_mod.lua
msgid "Are you sure you want to delete \"$1\"?"
msgstr " \"$1\" 'i silmek istediğinizden emin misiniz ?"

#: builtin/mainmenu/dlg_delete_mod.lua builtin/mainmenu/dlg_delete_world.lua
#: builtin/mainmenu/tab_server.lua builtin/mainmenu/tab_singleplayer.lua
#: src/keycode.cpp
msgid "Delete"
msgstr "Sil"

#: builtin/mainmenu/dlg_delete_mod.lua
msgid "Modmgr: failed to delete \"$1\""
msgstr "Modmgr:\"$1\" dosyası silerken hata"

#: builtin/mainmenu/dlg_delete_mod.lua
msgid "Modmgr: invalid modpath \"$1\""
msgstr "Modmgr: \"$1\" eklenti konumu yanlış"

#: builtin/mainmenu/dlg_delete_world.lua
msgid "Delete World \"$1\"?"
msgstr " \"$1\" dünyasını sil ?"

#: builtin/mainmenu/dlg_rename_modpack.lua src/keycode.cpp
msgid "Accept"
msgstr "Kabul et"

#: builtin/mainmenu/dlg_rename_modpack.lua
msgid "Rename Modpack:"
msgstr "Eklenti paketini yeniden adlandır :"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "\"$1\" is not a valid flag."
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "(No description of setting given)"
msgstr "(Açıklama bilgisi verilmedi)"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "< Back to Settings page"
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Browse"
msgstr "Seç"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Disabled"
msgstr "Paketi Kapat"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Edit"
msgstr "Düzenle"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Enabled"
msgstr "Etkinleştirildi"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Format is 3 numbers separated by commas and inside brackets."
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid ""
"Format: <offset>, <scale>, (<spreadX>, <spreadY>, <spreadZ>), <seed>, "
"<octaves>, <persistence>"
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Games"
msgstr "Oyun"

#: builtin/mainmenu/dlg_settings_advanced.lua builtin/mainmenu/tab_mods.lua
msgid "Mods"
msgstr "Eklentiler"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Optionally the lacunarity can be appended with a leading comma."
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Please enter a comma seperated list of flags."
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Please enter a valid integer."
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Please enter a valid number."
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Possible values are: "
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Restore Default"
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
#, fuzzy
msgid "Select path"
msgstr "Seç"

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "Show technical names"
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "The value must be greater than $1."
msgstr ""

#: builtin/mainmenu/dlg_settings_advanced.lua
msgid "The value must be lower than $1."
msgstr ""

#: builtin/mainmenu/modmgr.lua
msgid ""
"\n"
"Install Mod: unsupported filetype \"$1\" or broken archive"
msgstr ""
"\n"
"Eklenti yükle: Desteklenmeyen dosya uzantısı \"$1\" veya bozuk dosya"

#: builtin/mainmenu/modmgr.lua
msgid "Failed to install $1 to $2"
msgstr " $1 arası $2 yükleme başarısız"

#: builtin/mainmenu/modmgr.lua
msgid "Install Mod: file: \"$1\""
msgstr "Eklenti yükle: Dosya: \"$1\""

#: builtin/mainmenu/modmgr.lua
msgid "Install Mod: unable to find real modname for: $1"
msgstr "Eklenti yükle: $1 için eklenti adı bulunamadı"

#: builtin/mainmenu/modmgr.lua
msgid "Install Mod: unable to find suitable foldername for modpack $1"
msgstr "Eklenti yükle:$1 eklenti paketi için uygun bir klasör adı bulunamadı"

#: builtin/mainmenu/store.lua
msgid "Close store"
msgstr "Mağazayı kapat"

#: builtin/mainmenu/store.lua
msgid "Downloading $1, please wait..."
msgstr " $1, indiriliyor, lütfen bekleyin"

#: builtin/mainmenu/store.lua
msgid "Install"
msgstr "Yükle"

#: builtin/mainmenu/store.lua
msgid "Page $1 of $2"
msgstr "$2 sayfadan $1 'cisi"

#: builtin/mainmenu/store.lua
msgid "Rating"
msgstr "Oylama"

#: builtin/mainmenu/store.lua
msgid "Search"
msgstr "Ara"

#: builtin/mainmenu/store.lua
msgid "Shortname:"
msgstr "Takma ad :"

#: builtin/mainmenu/store.lua
msgid "Successfully installed:"
msgstr "Yükleme başarılı :"

#: builtin/mainmenu/store.lua
msgid "Unsorted"
msgstr "Sıralanmamış"

#: builtin/mainmenu/store.lua
msgid "re-Install"
msgstr "yeniden yükle"

#: builtin/mainmenu/tab_credits.lua
msgid "Active Contributors"
msgstr "Aktif katkı sağlayanlar"

#: builtin/mainmenu/tab_credits.lua
msgid "Core Developers"
msgstr "Ana geliştiriciler"

#: builtin/mainmenu/tab_credits.lua
msgid "Credits"
msgstr "Hakkında"

#: builtin/mainmenu/tab_credits.lua
msgid "Previous Contributors"
msgstr "Katkı sağlayanlar"

#: builtin/mainmenu/tab_credits.lua
msgid "Previous Core Developers"
msgstr "İlk geliştiriciler"

#: builtin/mainmenu/tab_mods.lua
msgid "Installed Mods:"
msgstr "Yüklenen eklentiler :"

#: builtin/mainmenu/tab_mods.lua
msgid "Mod information:"
msgstr "Eklenti bilgileri:"

#: builtin/mainmenu/tab_mods.lua
msgid "No mod description available"
msgstr "Eklenti bilgisi yok"

#: builtin/mainmenu/tab_mods.lua
msgid "Rename"
msgstr "Adlandır"

#: builtin/mainmenu/tab_mods.lua
msgid "Select Mod File:"
msgstr "Eklenti seç :"

#: builtin/mainmenu/tab_mods.lua
msgid "Uninstall selected mod"
msgstr "Seçili eklentiyi sil"

#: builtin/mainmenu/tab_mods.lua
msgid "Uninstall selected modpack"
msgstr "Seçilen eklenti paketini sil"

#: builtin/mainmenu/tab_multiplayer.lua
#, fuzzy
msgid "Address / Port"
msgstr "Adres / Port :"

#: builtin/mainmenu/tab_multiplayer.lua src/settings_translation_file.cpp
msgid "Client"
msgstr "Çevirimiçi Oyna"

#: builtin/mainmenu/tab_multiplayer.lua builtin/mainmenu/tab_simple_main.lua
msgid "Connect"
msgstr "Bağlan"

#: builtin/mainmenu/tab_multiplayer.lua builtin/mainmenu/tab_simple_main.lua
msgid "Creative mode"
msgstr "Yaratıcı mod"

#: builtin/mainmenu/tab_multiplayer.lua builtin/mainmenu/tab_simple_main.lua
msgid "Damage enabled"
msgstr "Hasar alma etkin"

#: builtin/mainmenu/tab_multiplayer.lua builtin/mainmenu/tab_simple_main.lua
msgid "Del. Favorite"
msgstr ""

#: builtin/mainmenu/tab_multiplayer.lua builtin/mainmenu/tab_simple_main.lua
msgid "Favorite"
msgstr ""

#: builtin/mainmenu/tab_multiplayer.lua builtin/mainmenu/tab_simple_main.lua
#, fuzzy
msgid "Name / Password"
msgstr "Kullanıcı Adı / Şifre :"

#: builtin/mainmenu/tab_multiplayer.lua builtin/mainmenu/tab_simple_main.lua
msgid "PvP enabled"
msgstr "Mücadele modu"

#: builtin/mainmenu/tab_server.lua
msgid "Bind Address"
msgstr "Adresi doğrula"

#: builtin/mainmenu/tab_server.lua builtin/mainmenu/tab_singleplayer.lua
msgid "Configure"
msgstr "Ayarla"

#: builtin/mainmenu/tab_server.lua builtin/mainmenu/tab_simple_main.lua
#: builtin/mainmenu/tab_singleplayer.lua
msgid "Creative Mode"
msgstr "Yaratıcı Mod"

#: builtin/mainmenu/tab_server.lua builtin/mainmenu/tab_simple_main.lua
#: builtin/mainmenu/tab_singleplayer.lua
msgid "Enable Damage"
msgstr "Hasarı etkinleştir"

#: builtin/mainmenu/tab_server.lua
msgid "Name/Password"
msgstr "Kullanıcı adı/Şifre"

#: builtin/mainmenu/tab_server.lua builtin/mainmenu/tab_singleplayer.lua
msgid "New"
msgstr "Yeni"

#: builtin/mainmenu/tab_server.lua builtin/mainmenu/tab_singleplayer.lua
#, fuzzy
msgid "No world created or selected!"
msgstr "Dünya seçilmedi ya da adlandırılmadı"

#: builtin/mainmenu/tab_server.lua
msgid "Port"
msgstr "Port"

#: builtin/mainmenu/tab_server.lua
msgid "Public"
msgstr "Herkese Açık"

#: builtin/mainmenu/tab_server.lua builtin/mainmenu/tab_singleplayer.lua
msgid "Select World:"
msgstr "Dünya seç :"

#: builtin/mainmenu/tab_server.lua
msgid "Server"
msgstr "Sunucu Kur"

#: builtin/mainmenu/tab_server.lua
msgid "Server Port"
msgstr "Sunucu portu"

#: builtin/mainmenu/tab_server.lua
msgid "Start Game"
msgstr "Oyunu Başlat"

#: builtin/mainmenu/tab_settings.lua
msgid "2x"
msgstr ""

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "3D Clouds"
msgstr "3 boyutlu bulutlar"

#: builtin/mainmenu/tab_settings.lua
msgid "4x"
msgstr ""

#: builtin/mainmenu/tab_settings.lua
msgid "8x"
msgstr ""

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Advanced Settings"
msgstr "Ayarlar"

#: builtin/mainmenu/tab_settings.lua
msgid "Antialiasing:"
msgstr ""

#: builtin/mainmenu/tab_settings.lua
msgid "Are you sure to reset your singleplayer world?"
msgstr "Tek kişilik dünyayı sıfırlamak istediğinizden emin misiniz ?"

#: builtin/mainmenu/tab_settings.lua
msgid "Bilinear Filter"
msgstr "İki yönlü süzme"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Bump Mapping"
msgstr "Engebeler"

#: builtin/mainmenu/tab_settings.lua
msgid "Change keys"
msgstr "Tuşları değiştir"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Connected Glass"
msgstr "İçiçe geçmiş cam"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Fancy Leaves"
msgstr "Şık ağaçlar"

#: builtin/mainmenu/tab_settings.lua
msgid "Mipmap"
msgstr "Mipmap"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Mipmap + Aniso. Filter"
msgstr "Mipmap  Aniso. Süzgeci"

#: builtin/mainmenu/tab_settings.lua
msgid "No"
msgstr "Hayır"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "No Filter"
msgstr "Süzme yok"

#: builtin/mainmenu/tab_settings.lua
msgid "No Mipmap"
msgstr "Mipmap kapalı"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Node Highlighting"
msgstr "Nesne seçme göstergesi"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Node Outlining"
msgstr "Nesne seçme göstergesi"

#: builtin/mainmenu/tab_settings.lua builtin/mainmenu/tab_texturepacks.lua
msgid "None"
msgstr ""

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Normal Mapping"
msgstr "Mip-Mapping"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Opaque Leaves"
msgstr "Şeffaf su"

#: builtin/mainmenu/tab_settings.lua
msgid "Opaque Water"
msgstr "Şeffaf su"

#: builtin/mainmenu/tab_settings.lua src/settings_translation_file.cpp
msgid "Parallax Occlusion"
msgstr "Parallax Occlusion"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Particles"
msgstr "Hepsini etkinleştir"

#: builtin/mainmenu/tab_settings.lua
msgid "Reset singleplayer world"
msgstr "Tek kişilik oyunu sıfırlayın"

#: builtin/mainmenu/tab_settings.lua
msgid "Settings"
msgstr "Ayarlar"

#: builtin/mainmenu/tab_settings.lua src/settings_translation_file.cpp
msgid "Shaders"
msgstr "Shaders"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Simple Leaves"
msgstr "Dalgalanan Yapraklar"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Smooth Lighting"
msgstr "Pürüzsüz ışıklandırma"

#: builtin/mainmenu/tab_settings.lua
msgid "Texturing:"
msgstr "Doku:"

#: builtin/mainmenu/tab_settings.lua
msgid "To enable shaders the OpenGL driver needs to be used."
msgstr "OpenGL sürücüleri seçilmeden Shader etkinleştirilemez."

#: builtin/mainmenu/tab_settings.lua src/settings_translation_file.cpp
#, fuzzy
msgid "Tone Mapping"
msgstr "Mip-Mapping"

#: builtin/mainmenu/tab_settings.lua
msgid "Touchthreshold (px)"
msgstr "Touchthreshold (px)"

#: builtin/mainmenu/tab_settings.lua
msgid "Trilinear Filter"
msgstr "Üç yönlü süzme"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Waving Leaves"
msgstr "Dalgalanan Yapraklar"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Waving Plants"
msgstr "Dalgalanan Bitkiler"

#: builtin/mainmenu/tab_settings.lua
#, fuzzy
msgid "Waving Water"
msgstr "Dalgalanan Su"

#: builtin/mainmenu/tab_settings.lua
msgid "Yes"
msgstr "Evet"

#: builtin/mainmenu/tab_simple_main.lua
msgid "Config mods"
msgstr "Eklentileri ayarla"

#: builtin/mainmenu/tab_simple_main.lua
msgid "Main"
msgstr "Ana"

#: builtin/mainmenu/tab_simple_main.lua
msgid "Start Singleplayer"
msgstr "Tek kişilik oyunu başlat"

#: builtin/mainmenu/tab_singleplayer.lua src/keycode.cpp
msgid "Play"
msgstr "Oyna"

#: builtin/mainmenu/tab_singleplayer.lua
msgid "Singleplayer"
msgstr "Tek Kişilik"

#: builtin/mainmenu/tab_texturepacks.lua
msgid "No information available"
msgstr "Bilgi yok"

#: builtin/mainmenu/tab_texturepacks.lua
msgid "Select texture pack:"
msgstr "Doku paketi seç :"

#: builtin/mainmenu/tab_texturepacks.lua
msgid "Texturepacks"
msgstr "Doku paketi"

#: src/client.cpp
#, fuzzy
msgid "Connection timed out."
msgstr "Bağlantı hatası ( Zaman aşımı ? )"

#: src/client.cpp
msgid "Done!"
msgstr "Tamam!"

#: src/client.cpp
#, fuzzy
msgid "Initializing nodes"
msgstr "Nesneler yükleniyor..."

#: src/client.cpp
msgid "Initializing nodes..."
msgstr "Nesneler yükleniyor..."

#: src/client.cpp
msgid "Loading textures..."
msgstr "Dokular yükleniyor..."

#: src/client.cpp
msgid "Rebuilding shaders..."
msgstr "Shader inşa ediliyor..."

#: src/client/clientlauncher.cpp
msgid "Connection error (timed out?)"
msgstr "Bağlantı hatası ( Zaman aşımı ? )"

#: src/client/clientlauncher.cpp
msgid "Could not find or load game \""
msgstr "Oyun yüklenemiyor \""

#: src/client/clientlauncher.cpp
msgid "Invalid gamespec."
msgstr "Geçersiz oyun özellikleri."

#: src/client/clientlauncher.cpp
msgid "Main Menu"
msgstr "Ana menu"

#: src/client/clientlauncher.cpp
msgid "No world selected and no address provided. Nothing to do."
msgstr "Dünya veya adres seçilmedi."

#: src/client/clientlauncher.cpp
msgid "Player name too long."
msgstr "Kullanıcı adı çok uzun."

#: src/client/clientlauncher.cpp
msgid "Provided world path doesn't exist: "
msgstr "Belirtilen dünya konumu yok:"

#: src/fontengine.cpp
msgid "needs_fallback_font"
msgstr "no"

#: src/game.cpp
msgid ""
"\n"
"Check debug.txt for details."
msgstr ""
"\n"
"Hata ayrıntıları için debug.txt dosyasını inceleyin."

#: src/game.cpp
msgid "Change Keys"
msgstr "Tuşları değiştir"

#: src/game.cpp
msgid "Change Password"
msgstr "Şifre değiştir"

#: src/game.cpp
msgid "Connecting to server..."
msgstr "Sunucuya bağlanılıyor..."

#: src/game.cpp
msgid "Continue"
msgstr "Devam et"

#: src/game.cpp
msgid "Creating client..."
msgstr "İstemci oluşturuluyor..."

#: src/game.cpp
msgid "Creating server..."
msgstr "Sunucu oluşturuluyor..."

#: src/game.cpp
msgid ""
"Default Controls:\n"
"- WASD: move\n"
"- Space: jump/climb\n"
"- Shift: sneak/go down\n"
"- Q: drop item\n"
"- I: inventory\n"
"- Mouse: turn/look\n"
"- Mouse left: dig/punch\n"
"- Mouse right: place/use\n"
"- Mouse wheel: select item\n"
"- T: chat\n"
msgstr ""
"Varsayılanlar Kontroller:\n"
"- WASD: Hareket et\n"
"- Boşluk: Zıpla/Tırman\n"
"- Shift: Sessiz yürü/Aşağı in\n"
"- Q: Elindekini bırak\n"
"- I: Envanter\n"
"- Fare: Dön/Bak\n"
"- Sol fare: Kaz/Vur\n"
"- Sağ fare: Yerleştir/Kullan\n"
"- Fare tekerleği: Araç seç\n"
"- T: Sohbet\n"

#: src/game.cpp
msgid ""
"Default Controls:\n"
"No menu visible:\n"
"- single tap: button activate\n"
"- double tap: place/use\n"
"- slide finger: look around\n"
"Menu/Inventory visible:\n"
"- double tap (outside):\n"
" -->close\n"
"- touch stack, touch slot:\n"
" --> move stack\n"
"- touch&drag, tap 2nd finger\n"
" --> place single item to slot\n"
msgstr ""
"Varsayılan Kontroller:\n"
"Tüm menüler gizli:\n"
"- Tek tık: tuş etkin\n"
"- Çift tık: yerleştir/kullan\n"
"- Parmağı kaydır: etrafa bak\n"
"Menu/Encanter görünür:\n"
"- çift tık (dışarda):\n"
" -->kapat\n"
"- touch stack, touch slot:\n"
" --> move stack\n"
"- tut&bırak, iki parmağı kullan\n"
" --> slotuna bir item bırak\n"

#: src/game.cpp
msgid "Exit to Menu"
msgstr "Menüye dön"

#: src/game.cpp
msgid "Exit to OS"
msgstr "Oyundan Çık"

#: src/game.cpp
msgid "Item definitions..."
msgstr "Nesne tanımlamaları..."

#: src/game.cpp
msgid "KiB/s"
msgstr ""

#: src/game.cpp
msgid "Media..."
msgstr "Media..."

#: src/game.cpp
msgid "MiB/s"
msgstr ""

#: src/game.cpp
msgid "Node definitions..."
msgstr "Blok tanımlamaları..."

#: src/game.cpp
msgid "Resolving address..."
msgstr "Adres çözümleniyor..."

#: src/game.cpp
msgid "Respawn"
msgstr "Yeniden Canlan"

#: src/game.cpp
msgid "Shutting down..."
msgstr "Kapatılıyor..."

#: src/game.cpp
msgid "Sound Volume"
msgstr "Ses yüksekliği :"

#: src/game.cpp
msgid "You died."
msgstr "Geberdin."

#: src/game.cpp src/guiFormSpecMenu.cpp
msgid "ok"
msgstr "tamam"

#: src/guiFormSpecMenu.cpp
msgid "Enter "
msgstr "Entrer "

#: src/guiFormSpecMenu.cpp
msgid "Proceed"
msgstr "Uygula"

#: src/guiKeyChangeMenu.cpp
msgid "\"Use\" = climb down"
msgstr "\"Kullan Tuşu\" = Aşağı in"

#: src/guiKeyChangeMenu.cpp
msgid "Backward"
msgstr "Geri"

#: src/guiKeyChangeMenu.cpp
msgid "Chat"
msgstr "Konuşma"

#: src/guiKeyChangeMenu.cpp
msgid "Command"
msgstr "Komut"

#: src/guiKeyChangeMenu.cpp
msgid "Console"
msgstr "Konsol"

#: src/guiKeyChangeMenu.cpp
msgid "Double tap \"jump\" to toggle fly"
msgstr "Çift zıplayarak uçma modunu aç/kapa"

#: src/guiKeyChangeMenu.cpp
msgid "Drop"
msgstr "Bırak"

#: src/guiKeyChangeMenu.cpp
msgid "Forward"
msgstr "İleri"

#: src/guiKeyChangeMenu.cpp
msgid "Inventory"
msgstr "Envanter"

#: src/guiKeyChangeMenu.cpp
msgid "Jump"
msgstr "Zıpla"

#: src/guiKeyChangeMenu.cpp
msgid "Key already in use"
msgstr "Tuş zaten kullanımda"

#: src/guiKeyChangeMenu.cpp
msgid "Keybindings. (If this menu screws up, remove stuff from minetest.conf)"
msgstr "Tuş ayaları. ( Olağandışı durumlarda minetest.conf 'u düzenleyin )"

#: src/guiKeyChangeMenu.cpp src/keycode.cpp
msgid "Left"
msgstr "Sol"

#: src/guiKeyChangeMenu.cpp src/settings_translation_file.cpp
msgid "Print stacks"
msgstr "Yazdırma yığınları"

#: src/guiKeyChangeMenu.cpp
msgid "Range select"
msgstr "Uzaklık seçimi"

#: src/guiKeyChangeMenu.cpp src/keycode.cpp
msgid "Right"
msgstr "Sağ"

#: src/guiKeyChangeMenu.cpp
msgid "Sneak"
msgstr "Sessiz Yürü"

#: src/guiKeyChangeMenu.cpp
#, fuzzy
msgid "Toggle Cinematic"
msgstr "Hız modu aç/kapa"

#: src/guiKeyChangeMenu.cpp
msgid "Toggle fast"
msgstr "Hız modu aç/kapa"

#: src/guiKeyChangeMenu.cpp
msgid "Toggle fly"
msgstr "Uçuş modu aç/kapa"

#: src/guiKeyChangeMenu.cpp
msgid "Toggle noclip"
msgstr "Noclip aç/kapa"

#: src/guiKeyChangeMenu.cpp
msgid "Use"
msgstr "Kullan"

#: src/guiKeyChangeMenu.cpp src/keycode.cpp
msgid "Zoom"
msgstr "Yakınlaştır"

#: src/guiKeyChangeMenu.cpp
msgid "press key"
msgstr "tuşa bas"

#: src/guiPasswordChange.cpp
msgid "Change"
msgstr "Değiştir"

#: src/guiPasswordChange.cpp
msgid "Confirm Password"
msgstr "Şifreyi doğrulayın"

#: src/guiPasswordChange.cpp
msgid "New Password"
msgstr "Yeni şifre"

#: src/guiPasswordChange.cpp
msgid "Old Password"
msgstr "Eski şifre"

#: src/guiPasswordChange.cpp
msgid "Passwords do not match!"
msgstr "Şifreler uyuşmuyor !"

#: src/guiVolumeChange.cpp
msgid "Exit"
msgstr "Çıkış"

#: src/guiVolumeChange.cpp
msgid "Sound Volume: "
msgstr "Ses yüksekliği :"

#: src/keycode.cpp
msgid "Apps"
msgstr "Uygulamalar"

#: src/keycode.cpp
msgid "Attn"
msgstr "Dikkat"

#: src/keycode.cpp
msgid "Back"
msgstr "Geri"

#: src/keycode.cpp
msgid "Capital"
msgstr "Büyük"

#: src/keycode.cpp
msgid "Clear"
msgstr "Temizle"

#: src/keycode.cpp
msgid "Comma"
msgstr "Virgul"

#: src/keycode.cpp
msgid "Control"
msgstr "Kontroller"

#: src/keycode.cpp
msgid "Convert"
msgstr "Dönüştür"

#: src/keycode.cpp
msgid "CrSel"
msgstr "CrSel"

#: src/keycode.cpp
msgid "Down"
msgstr "Aşağı"

#: src/keycode.cpp
msgid "End"
msgstr "Son"

#: src/keycode.cpp
msgid "Erase OEF"
msgstr "l'OEF 'i sil"

#: src/keycode.cpp
msgid "Escape"
msgstr "Çıkış"

#: src/keycode.cpp
msgid "ExSel"
msgstr "ExSel"

#: src/keycode.cpp
msgid "Execute"
msgstr "Çalıştır"

#: src/keycode.cpp
msgid "Final"
msgstr "Bitiş"

#: src/keycode.cpp
msgid "Help"
msgstr "Yardım"

#: src/keycode.cpp
msgid "Home"
msgstr "Ev"

#: src/keycode.cpp
msgid "Insert"
msgstr "Insert"

#: src/keycode.cpp
msgid "Junja"
msgstr "Junja"

#: src/keycode.cpp
msgid "Kana"
msgstr "Kana"

#: src/keycode.cpp
msgid "Kanji"
msgstr "Kanji"

#: src/keycode.cpp
msgid "Left Button"
msgstr "Sol tuşu"

#: src/keycode.cpp
msgid "Left Control"
msgstr "Sol CTRL"

#: src/keycode.cpp
msgid "Left Menu"
msgstr "Sol Menu"

#: src/keycode.cpp
msgid "Left Shift"
msgstr "Sol Shift"

#: src/keycode.cpp
msgid "Left Windows"
msgstr "Sol Windows tuşu"

#: src/keycode.cpp
msgid "Menu"
msgstr "Menü"

#: src/keycode.cpp
msgid "Middle Button"
msgstr "Orta Tuş"

#: src/keycode.cpp
msgid "Minus"
msgstr "Eksi"

#: src/keycode.cpp
msgid "Mode Change"
msgstr "Mod değiştir"

#: src/keycode.cpp
msgid "Next"
msgstr "İleri"

#: src/keycode.cpp
msgid "Nonconvert"
msgstr "Dönüştürme"

#: src/keycode.cpp
msgid "Num Lock"
msgstr "Num Lock"

#: src/keycode.cpp
msgid "Numpad *"
msgstr "Numpad *"

#: src/keycode.cpp
msgid "Numpad +"
msgstr "Numpad +"

#: src/keycode.cpp
msgid "Numpad -"
msgstr "Numpad -"

#: src/keycode.cpp
msgid "Numpad /"
msgstr "Numpad /"

#: src/keycode.cpp
msgid "Numpad 0"
msgstr "Numpad 0"

#: src/keycode.cpp
msgid "Numpad 1"
msgstr "Numpad 1"

#: src/keycode.cpp
msgid "Numpad 2"
msgstr "Numpad 2"

#: src/keycode.cpp
msgid "Numpad 3"
msgstr "Numpad 3"

#: src/keycode.cpp
msgid "Numpad 4"
msgstr "Numpad 4"

#: src/keycode.cpp
msgid "Numpad 5"
msgstr "Numpad 5"

#: src/keycode.cpp
msgid "Numpad 6"
msgstr "Numpad 6"

#: src/keycode.cpp
msgid "Numpad 7"
msgstr "Numpad 7"

#: src/keycode.cpp
msgid "Numpad 8"
msgstr "Numpad 8"

#: src/keycode.cpp
msgid "Numpad 9"
msgstr "Numpad 9"

#: src/keycode.cpp
msgid "OEM Clear"
msgstr "OEM Temizle"

#: src/keycode.cpp
msgid "PA1"
msgstr "PA1"

#: src/keycode.cpp
msgid "Pause"
msgstr "Beklet"

#: src/keycode.cpp
msgid "Period"
msgstr "Dönem"

#: src/keycode.cpp
msgid "Plus"
msgstr "Artı"

#: src/keycode.cpp
msgid "Print"
msgstr "Yazdır"

#: src/keycode.cpp
msgid "Prior"
msgstr "Öncelikli"

#: src/keycode.cpp
msgid "Return"
msgstr "Return"

#: src/keycode.cpp
msgid "Right Button"
msgstr "Sağ tuş"

#: src/keycode.cpp
msgid "Right Control"
msgstr "Sağ CTRL"

#: src/keycode.cpp
msgid "Right Menu"
msgstr "Sağ Menu"

#: src/keycode.cpp
msgid "Right Shift"
msgstr "Sağ Shift"

#: src/keycode.cpp
msgid "Right Windows"
msgstr "Sağ Windows tuşu"

#: src/keycode.cpp
msgid "Scroll Lock"
msgstr "Scroll Lock"

#: src/keycode.cpp
msgid "Select"
msgstr "Seç"

#: src/keycode.cpp
msgid "Shift"
msgstr "Shift"

#: src/keycode.cpp
msgid "Sleep"
msgstr "Uyu"

#: src/keycode.cpp
msgid "Snapshot"
msgstr "Ekran Resmi"

#: src/keycode.cpp
msgid "Space"
msgstr "Boşluk"

#: src/keycode.cpp
msgid "Tab"
msgstr "Tab"

#: src/keycode.cpp
msgid "Up"
msgstr "Yukarı"

#: src/keycode.cpp
msgid "X Button 1"
msgstr "X Button 1"

#: src/keycode.cpp
msgid "X Button 2"
msgstr "X Button 2"

#: src/settings_translation_file.cpp
msgid ""
"(X,Y,Z) offset of fractal from world centre in units of 'scale'.\n"
"Used to move a suitable spawn area of low land close to (0, 0).\n"
"The default is suitable for mandelbrot sets, it needs to be edited for julia "
"sets.\n"
"Range roughly -2 to 2. Multiply by 'scale' for offset in nodes."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"0 = parallax occlusion with slope information (faster).\n"
"1 = relief mapping (slower, more accurate)."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "3D clouds"
msgstr "3 boyutlu bulutlar"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "3D mode"
msgstr "Uçuş modu"

#: src/settings_translation_file.cpp
msgid ""
"3D support.\n"
"Currently supported:\n"
"-    none: no 3d output.\n"
"-    anaglyph: cyan/magenta color 3d.\n"
"-    interlaced: odd/even line based polarisation screen support.\n"
"-    topbottom: split screen top/bottom.\n"
"-    sidebyside: split screen side by side.\n"
"-    pageflip: quadbuffer based 3d."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"A chosen map seed for a new map, leave empty for random.\n"
"Will be overridden when creating a new world in the main menu."
msgstr ""

#: src/settings_translation_file.cpp
msgid "A message to be displayed to all clients when the server crashes."
msgstr ""

#: src/settings_translation_file.cpp
msgid "A message to be displayed to all clients when the server shuts down."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Absolute limit of emerge queues"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Acceleration in air"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Active Block Management interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Active Block Modifier interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Active Block Modifiers"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Active block range"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Active object send range"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Address to connect to.\n"
"Leave this blank to start a local server.\n"
"Note that the address field in the main menu overrides this setting."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k "
"screens."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Adjust the gamma encoding for the light tables. Lower numbers are brighter.\n"
"This setting is for the client only and is ignored by the server."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Advanced"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Altitude Chill"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Always fly and fast"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Ambient occlusion gamma"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Amplifies the valleys"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Anisotropic filtering"
msgstr "Eşyönsüz süzme"

#: src/settings_translation_file.cpp
msgid "Announce server"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Announce to this serverlist.\n"
"If you want to announce your ipv6 address, use  serverlist_url = v6.servers."
"minetest.net."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Approximate (X,Y,Z) scale of fractal in nodes."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Ask to reconnect after crash"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Automaticaly report to the serverlist."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Autorun key"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Backward key"
msgstr "Geri"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Base terrain height"
msgstr "Dalgalanan Su"

#: src/settings_translation_file.cpp
msgid "Basic"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Basic Privileges"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Bilinear filtering"
msgstr "Çift yönlü süzme"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Bind address"
msgstr "Adresi doğrula"

#: src/settings_translation_file.cpp
msgid "Bits per pixel (aka color depth) in fullscreen mode."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Build inside player"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Builtin"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Bumpmapping"
msgstr "Engebeler"

#: src/settings_translation_file.cpp
msgid "Camera smoothing"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Camera smoothing in cinematic mode"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Camera update toggle key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Cave noise #1"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Cave noise #2"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Cave width"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Caves and tunnels form at the intersection of the two noises"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Chat key"
msgstr "Tuşları değiştir"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Chat toggle key"
msgstr "Tuşları değiştir"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Chatcommands"
msgstr "Komut"

#: src/settings_translation_file.cpp
msgid ""
"Choice of 18 fractals from 9 formulas.\n"
"1 = 4D \"Roundy\" mandelbrot set.\n"
"2 = 4D \"Roundy\" julia set.\n"
"3 = 4D \"Squarry\" mandelbrot set.\n"
"4 = 4D \"Squarry\" julia set.\n"
"5 = 4D \"Mandy Cousin\" mandelbrot set.\n"
"6 = 4D \"Mandy Cousin\" julia set.\n"
"7 = 4D \"Variation\" mandelbrot set.\n"
"8 = 4D \"Variation\" julia set.\n"
"9 = 3D \"Mandelbrot/Mandelbar\" mandelbrot set.\n"
"10 = 3D \"Mandelbrot/Mandelbar\" julia set.\n"
"11 = 3D \"Christmas Tree\" mandelbrot set.\n"
"12 = 3D \"Christmas Tree\" julia set.\n"
"13 = 3D \"Mandelbulb\" mandelbrot set.\n"
"14 = 3D \"Mandelbulb\" julia set.\n"
"15 = 3D \"Cosine Mandelbulb\" mandelbrot set.\n"
"16 = 3D \"Cosine Mandelbulb\" julia set.\n"
"17 = 4D \"Mandelbulb\" mandelbrot set.\n"
"18 = 4D \"Mandelbulb\" julia set."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Chunk size"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Cinematic mode"
msgstr "Yaratıcı mod"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Cinematic mode key"
msgstr "Yaratıcı mod"

#: src/settings_translation_file.cpp
msgid "Clean transparent textures"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Client and Server"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Climbing speed"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Cloud height"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Cloud radius"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Clouds"
msgstr "3 boyutlu bulutlar"

#: src/settings_translation_file.cpp
msgid "Clouds are a client side effect."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Clouds in menu"
msgstr "Ana menu"

#: src/settings_translation_file.cpp
msgid "Colored fog"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Comma-separated list of mods that are allowed to access HTTP APIs, which\n"
"allow them to upload and download data to/from the internet."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Comma-separated list of trusted mods that are allowed to access insecure\n"
"functions even when mod security is on (via request_insecure_environment())."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Command key"
msgstr "Komut"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Connect glass"
msgstr "İçiçe geçmiş cam"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Connect to external media server"
msgstr "Sunucuya bağlanılıyor..."

#: src/settings_translation_file.cpp
msgid "Connects glass if supported by node."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Console alpha"
msgstr "Konsol"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Console color"
msgstr "Konsol"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Console key"
msgstr "Konsol"

#: src/settings_translation_file.cpp
msgid "Continuous forward"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Continuous forward movement (only used for testing)."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Controls"
msgstr "Kontroller"

#: src/settings_translation_file.cpp
msgid ""
"Controls length of day/night cycle.\n"
"Examples: 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays "
"unchanged."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Controls size of deserts and beaches in Mapgen v6.\n"
"When snowbiomes are enabled 'mgv6_freq_desert' is ignored."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Controls steepness/depth of lake depressions."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Controls steepness/height of hills."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Controls width of tunnels, a smaller value creates wider tunnels."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Crash message"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Creates unpredictable lava features in caves.\n"
"These can make mining difficult. Zero disables them. (0-10)"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Creates unpredictable water features in caves.\n"
"These can make mining difficult. Zero disables them. (0-10)"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Crosshair alpha"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Crosshair alpha (opaqueness, between 0 and 255)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Crosshair color"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Crosshair color (R,G,B)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Crouch speed"
msgstr ""

#: src/settings_translation_file.cpp
msgid "DPI"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Damage"
msgstr "Hasarı etkinleştir"

#: src/settings_translation_file.cpp
msgid "Debug info toggle key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Debug log level"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Dedicated server step"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Default acceleration"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Default game"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Default game when creating a new world.\n"
"This will be overridden when creating a world from the main menu."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Default password"
msgstr "Yeni şifre"

#: src/settings_translation_file.cpp
msgid "Default privileges"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Default report format"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Default timeout for cURL, stated in milliseconds.\n"
"Only has an effect if compiled with cURL."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Defines sampling step of texture.\n"
"A higher value results in smoother normal maps."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Delay in sending blocks after building"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Delay showing tooltips, stated in milliseconds."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Deprecated Lua API handling"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Depth below which you'll find large caves."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Depth below which you'll find massive caves."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Descending speed"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Description of server, to be displayed when players join and in the "
"serverlist."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Desynchronize block animation"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Determines terrain shape.\n"
"The 3 numbers in brackets control the scale of the\n"
"terrain, the 3 numbers should be identical."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Disable anticheat"
msgstr "Parçacıkları etkinleştir"

#: src/settings_translation_file.cpp
msgid "Disable escape sequences"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Disable escape sequences, e.g. chat coloring.\n"
"Use this if you want to run a server with pre-0.4.14 clients and you want to "
"disable\n"
"the escape sequences generated by mods."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Disallow empty passwords"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Domain name of server, to be displayed in the serverlist."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Double tap jump for fly"
msgstr "Çift zıplayarak uçma modunu aç/kapa"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Double-tapping the jump key toggles fly mode."
msgstr "Çift zıplayarak uçma modunu aç/kapa"

#: src/settings_translation_file.cpp
msgid "Drop item key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Dump the mapgen debug infos."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Enable Joysticks"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Enable VBO"
msgstr "Paketi Aç"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Enable mod security"
msgstr "Çevirimiçi eklenti deposu"

#: src/settings_translation_file.cpp
msgid "Enable players getting damage and dying."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Enable random user input (only used for testing)."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Enable smooth lighting with simple ambient occlusion.\n"
"Disable for speed or for different looks."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Enable to disallow old clients from connecting.\n"
"Older clients are compatible in the sense that they will not crash when "
"connecting\n"
"to new servers, but they may not support all new features that you are "
"expecting."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Enable usage of remote media server (if provided by server).\n"
"Remote servers offer a significantly faster way to download media (e.g. "
"textures)\n"
"when connecting to the server."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Enable/disable running an IPv6 server.  An IPv6 server may be restricted\n"
"to IPv6 clients, depending on system configuration.\n"
"Ignored if bind_address is set."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Enables animation of inventory items."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Enables bumpmapping for textures. Normalmaps need to be supplied by the "
"texture pack\n"
"or need to be auto-generated.\n"
"Requires shaders to be enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Enables caching of facedir rotated meshes."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Enables filmic tone mapping"
msgstr "Hasarı etkinleştir"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Enables minimap."
msgstr "Hasarı etkinleştir"

#: src/settings_translation_file.cpp
msgid ""
"Enables on the fly normalmap generation (Emboss effect).\n"
"Requires bumpmapping to be enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Enables parallax occlusion mapping.\n"
"Requires shaders to be enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Engine profiling data print interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Entity methods"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Experimental option, might cause visible spaces between blocks\n"
"when set to higher number than 0."
msgstr ""

#: src/settings_translation_file.cpp
msgid "FPS in pause menu"
msgstr ""

#: src/settings_translation_file.cpp
msgid "FSAA"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fall bobbing"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Fallback font"
msgstr "needs_fallback_font"

#: src/settings_translation_file.cpp
msgid "Fallback font shadow"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fallback font shadow alpha"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fallback font size"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fast key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fast mode acceleration"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fast mode speed"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fast movement"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Fast movement (via use key).\n"
"This requires the \"fast\" privilege on the server."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Field of view"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Field of view for zoom"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Field of view in degrees."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Field of view while zooming in degrees.\n"
"This requires the \"zoom\" privilege on the server."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"File in client/serverlist/ that contains your favorite servers displayed in "
"the Multiplayer Tab."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Filler Depth"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Filmic tone mapping"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Filtered textures can blend RGB values with fully-transparent neighbors,\n"
"which PNG optimizers usually discard, sometimes resulting in a dark or\n"
"light edge to transparent textures.  Apply this filter to clean that up\n"
"at texture load time."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Filtering"
msgstr "Süzme yok"

#: src/settings_translation_file.cpp
msgid "Fixed map seed"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Fly key"
msgstr "Uçuş modu"

#: src/settings_translation_file.cpp
msgid "Flying"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fog"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fog toggle key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Font path"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Font shadow"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Font shadow alpha"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Font shadow alpha (opaqueness, between 0 and 255)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Font shadow offset, if 0 then shadow will not be drawn."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Font size"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Format of screenshots."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Forward key"
msgstr "İleri"

#: src/settings_translation_file.cpp
msgid "Freetype fonts"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"From how far blocks are generated for clients, stated in mapblocks (16 "
"nodes)."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"From how far blocks are sent to clients, stated in mapblocks (16 nodes)."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"From how far clients know about objects, stated in mapblocks (16 nodes)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Full screen"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Full screen BPP"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Fullscreen mode."
msgstr ""

#: src/settings_translation_file.cpp
msgid "GUI scaling"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "GUI scaling filter"
msgstr "Menü boyutları"

#: src/settings_translation_file.cpp
msgid "GUI scaling filter txr2img"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Gamma"
msgstr ""

#: src/settings_translation_file.cpp
msgid "General"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Generate normalmaps"
msgstr "Normal haritalar oluştur"

#: src/settings_translation_file.cpp
msgid "Global callbacks"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Global map generation attributes.\n"
"In Mapgen v6 the 'decorations' flag controls all decorations except trees\n"
"and junglegrass, in all other mapgens this flag controls all decorations.\n"
"Flags that are not specified in the flag string are not modified from the "
"default.\n"
"Flags starting with 'no' are used to explicitly disable them."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Graphics"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Gravity"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "HTTP Mods"
msgstr "Eklentiler"

#: src/settings_translation_file.cpp
msgid "HUD toggle key"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Handling for deprecated lua api calls:\n"
"-    legacy: (try to) mimic old behaviour (default for release).\n"
"-    log: mimic and log backtrace of deprecated call (default for debug).\n"
"-    error: abort on usage of deprecated call (suggested for mod developers)."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Have the profiler instrument itself:\n"
"* Instrument an empty function.\n"
"This estimates the overhead, that instrumentation is adding (+1 function "
"call).\n"
"* Instrument the sampler being used to update the statistics."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Height component of the initial window size."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Height on which clouds are appearing."
msgstr ""

#: src/settings_translation_file.cpp
msgid "High-precision FPU"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Homepage of server, to be displayed in the serverlist."
msgstr ""

#: src/settings_translation_file.cpp
msgid "How deep to make rivers"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"How large area of blocks are subject to the active block stuff, stated in "
"mapblocks (16 nodes).\n"
"In active blocks objects are loaded and ABMs run."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"How much the server will wait before unloading unused mapblocks.\n"
"Higher value is smoother, but will use more RAM."
msgstr ""

#: src/settings_translation_file.cpp
msgid "How wide to make rivers"
msgstr ""

#: src/settings_translation_file.cpp
msgid "IPv6"
msgstr ""

#: src/settings_translation_file.cpp
msgid "IPv6 server"
msgstr ""

#: src/settings_translation_file.cpp
msgid "IPv6 support."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"If FPS would go higher than this, limit it by sleeping\n"
"to not waste CPU power for no benefit."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"If disabled \"use\" key is used to fly fast if both fly and fast mode are "
"enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"If enabled together with fly mode, player is able to fly through solid "
"nodes.\n"
"This requires the \"noclip\" privilege on the server."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"If enabled, \"use\" key instead of \"sneak\" key is used for climbing down "
"and descending."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"If enabled, actions are recorded for rollback.\n"
"This option is only read when server starts."
msgstr ""

#: src/settings_translation_file.cpp
msgid "If enabled, disable cheat prevention in multiplayer."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"If enabled, invalid world data won't cause the server to shut down.\n"
"Only enable this if you know what you are doing."
msgstr ""

#: src/settings_translation_file.cpp
msgid "If enabled, new players cannot join with an empty password."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"If enabled, you can place blocks at the position (feet + eye level) where "
"you stand.\n"
"This is helpful when working with nodeboxes in small areas."
msgstr ""

#: src/settings_translation_file.cpp
msgid "If this is set, players will always (re)spawn at the given position."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Ignore world errors"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "In-Game"
msgstr "Oyun"

#: src/settings_translation_file.cpp
msgid "In-game chat console background alpha (opaqueness, between 0 and 255)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "In-game chat console background color (R,G,B)."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Instrument builtin.\n"
"This is usually only needed by core/builtin contributors"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Instrument chatcommands on registration."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Instrument global callback functions on registration.\n"
"(anything you pass to a minetest.register_*() function)"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Instrument the action function of Active Block Modifiers on registration."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Instrument the action function of Loading Block Modifiers on registration."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Instrument the methods of entities on registration."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Instrumentation"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Interval of saving important changes in the world, stated in seconds."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Interval of sending time of day to clients."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Inventory items animations"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Inventory key"
msgstr "Envanter"

#: src/settings_translation_file.cpp
msgid "Invert mouse"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Invert vertical mouse movement."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Item entity TTL"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Iterations of the recursive function.\n"
"Controls the amount of fine detail."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Joystick button repetition interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Joystick frustum sensitivity"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Julia set only: W component of hypercomplex constant determining julia "
"shape.\n"
"Has no effect on 3D fractals.\n"
"Range roughly -2 to 2."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Julia set only: X component of hypercomplex constant determining julia "
"shape.\n"
"Range roughly -2 to 2."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Julia set only: Y component of hypercomplex constant determining julia "
"shape.\n"
"Range roughly -2 to 2."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Julia set only: Z component of hypercomplex constant determining julia "
"shape.\n"
"Range roughly -2 to 2."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Jump key"
msgstr "Zıpla"

#: src/settings_translation_file.cpp
msgid "Jumping speed"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for decreasing the viewing range.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for dropping the currently selected item.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for increasing the viewing range.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for jumping.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for moving fast in fast mode.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for moving the player backward.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for moving the player forward.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for moving the player left.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for moving the player right.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for opening the chat console.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for opening the chat window to type commands.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for opening the chat window.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for opening the inventory.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for printing debug stacks. Used for development.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for sneaking.\n"
"Also used for climbing down and descending in water if aux1_descends is "
"disabled.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for switching between first- and third-person camera.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for taking screenshots.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling autorun.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling cinematic mode.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling display of minimap.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling fast mode.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling flying.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling noclip mode.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling the camera update. Only used for development\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling the display of debug info.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling the display of the HUD.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling the display of the chat.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling the display of the fog.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling the display of the profiler. Used for development.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Key for toggling unlimited view range.\n"
"See http://irrlicht.sourceforge.net/docu/namespaceirr."
"html#a54da2a0e231901735e3da1b0edf72eb3"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Key use for climbing/descending"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Language"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Large cave depth"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Lava Features"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Leaves style"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Leaves style:\n"
"-   Fancy:  all faces visible\n"
"-   Simple: only outer faces, if defined special_tiles are used\n"
"-   Opaque: disable transparency"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Left key"
msgstr "Sol Menu"

#: src/settings_translation_file.cpp
msgid ""
"Length of a server tick and the interval at which objects are generally "
"updated over network."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Length of time between ABM execution cycles"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Length of time between NodeTimer execution cycles"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Level of logging to be written to debug.txt:\n"
"-    <nothing> (no logging)\n"
"-    none (messages with no level)\n"
"-    error\n"
"-    warning\n"
"-    action\n"
"-    info\n"
"-    verbose"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Limit of emerge queues on disk"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Limit of emerge queues to generate"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Limits number of parallel HTTP requests. Affects:\n"
"-    Media fetch if server uses remote_media setting.\n"
"-    Serverlist download and server announcement.\n"
"-    Downloads performed by main menu (e.g. mod manager).\n"
"Only has an effect if compiled with cURL."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Liquid fluidity"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Liquid fluidity smoothing"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Liquid loop max"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Liquid queue purge time"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Liquid sink"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Liquid update interval in seconds."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Liquid update tick"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Load the game profiler"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Load the game profiler to collect game profiling data.\n"
"Provides a /profiler command to access the compiled profile.\n"
"Useful for mod developers and server operators."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Loading Block Modifiers"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Main menu game manager"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Main menu mod manager"
msgstr "Ana menu"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Main menu script"
msgstr "Ana menu"

#: src/settings_translation_file.cpp
msgid ""
"Make fog and sky colors depend on daytime (dawn/sunset) and view direction."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Makes DirectX work with LuaJIT. Disable if it causes troubles."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Map directory"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Map generation attributes specific to Mapgen Valleys.\n"
"'altitude_chill' makes higher elevations colder, which may cause biome "
"issues.\n"
"'humid_rivers' modifies the humidity around rivers and in areas where water "
"would tend to pool,\n"
"it may interfere with delicately adjusted biomes.\n"
"Flags that are not specified in the flag string are not modified from the "
"default.\n"
"Flags starting with 'no' are used to explicitly disable them."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Map generation attributes specific to Mapgen flat.\n"
"Occasional lakes and hills can be added to the flat world.\n"
"Flags that are not specified in the flag string are not modified from the "
"default.\n"
"Flags starting with 'no' are used to explicitly disable them."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Map generation attributes specific to Mapgen v6.\n"
"When snowbiomes are enabled jungles are automatically enabled, the 'jungles' "
"flag is ignored.\n"
"Flags that are not specified in the flag string are not modified from the "
"default.\n"
"Flags starting with 'no' are used to explicitly disable them."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Map generation attributes specific to Mapgen v7.\n"
"The 'ridges' flag controls the rivers.\n"
"Flags that are not specified in the flag string are not modified from the "
"default.\n"
"Flags starting with 'no' are used to explicitly disable them."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Map generation limit"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Map save interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapblock limit"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapblock unload timeout"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen Valleys"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen biome heat noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen biome humidity blend noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen biome humidity noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen debug"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen flags"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen flat"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen flat cave width"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen flat cave1 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen flat cave2 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen flat filler depth noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen flat flags"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen flat ground level"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen flat hill steepness"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen flat hill threshold"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen flat lake steepness"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen flat lake threshold"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen flat large cave depth"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen flat terrain noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen fractal"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen fractal cave width"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen fractal cave1 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen fractal cave2 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen fractal filler depth noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen fractal fractal"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen fractal iterations"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
msgid "Mapgen fractal julia w"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen fractal julia x"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen fractal julia y"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen fractal julia z"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen fractal offset"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen fractal scale"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen fractal seabed noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen fractal slice w"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen heat blend noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen name"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen v5"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen v5 cave width"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen v5 cave1 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v5 cave2 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v5 factor noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v5 filler depth noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v5 height noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen v6"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen v6 apple trees noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 beach frequency"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 beach noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 biome noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 cave noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 desert frequency"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 flags"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 height select noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 humidity noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 mud noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 steepness noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 terrain altitude noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 terrain base noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v6 trees noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen v7"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mapgen v7 cave width"
msgstr "Mapgen"

#: src/settings_translation_file.cpp
msgid "Mapgen v7 cave1 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 cave2 noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 filler depth noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 flags"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 height select noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 mount height noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 mountain noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 ridge noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 ridge water noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 terrain altitude noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 terrain base noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mapgen v7 terrain persistation noise parameters"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Massive cave depth"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Massive cave noise"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Massive caves form here."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Max block generate distance"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Max block send distance"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Max liquids processed per step."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Max. clearobjects extra blocks"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Max. packets per iteration"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum FPS"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum FPS when game is paused."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum forceloaded blocks"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum hotbar width"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum number of blocks that are simultaneously sent in total."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum number of blocks that are simultaneously sent per client."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum number of blocks that can be queued for loading."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Maximum number of blocks to be queued that are to be generated.\n"
"Set to blank for an appropriate amount to be chosen automatically."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Maximum number of blocks to be queued that are to be loaded from file.\n"
"Set to blank for an appropriate amount to be chosen automatically."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum number of forceloaded mapblocks."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Maximum number of mapblocks for client to be kept in memory.\n"
"Set to -1 for unlimited amount."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Maximum number of packets sent per send step, if you have a slow connection\n"
"try reducing it, but don't reduce it to a number below double of targeted\n"
"client number."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum number of players that can connect simultaneously."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum number of statically stored objects in a block."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum objects per block"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Maximum proportion of current window to be used for hotbar.\n"
"Useful if there's something to be displayed right or left of hotbar."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum simultaneous block sends per client"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum simultaneous block sends total"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum time in ms a file download (e.g. a mod download) may take."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Maximum users"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Menus"
msgstr "Menü"

#: src/settings_translation_file.cpp
msgid "Mesh cache"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Message of the day"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Message of the day displayed to players connecting."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Method used to highlight selected object."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Minimap"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Minimap key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Minimap scan height"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Minimum texture size for filters"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Mipmapping"
msgstr "Mip-Mapping"

#: src/settings_translation_file.cpp
msgid "Modstore details URL"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Modstore download URL"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Modstore mods list URL"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Monospace font path"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Monospace font size"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mouse sensitivity"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Mouse sensitivity multiplier."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Multiplier for fall bobbing.\n"
"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Multiplier for view bobbing.\n"
"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Name of map generator to be used when creating a new world.\n"
"Creating a world in the main menu will override this."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Name of the player.\n"
"When running a server, clients connecting with this name are admins.\n"
"When starting from the main menu, this is overridden."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Name of the server, to be displayed when players join and in the serverlist."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Network"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Network port to listen (UDP).\n"
"This value will be overridden when starting from the main menu."
msgstr ""

#: src/settings_translation_file.cpp
msgid "New users need to input this password."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Noclip"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Noclip key"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Node highlighting"
msgstr "Nesne seçme göstergesi"

#: src/settings_translation_file.cpp
msgid "NodeTimer interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Noise parameters for biome API temperature, humidity and biome blend."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Noises"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Normalmaps sampling"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Normalmaps strength"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Number of emerge threads"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Number of emerge threads to use. Make this field blank, or increase this "
"number\n"
"to use multiple threads. On multiprocessor systems, this will improve mapgen "
"speed greatly\n"
"at the cost of slightly buggy caves."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Number of extra blocks that can be loaded by /clearobjects at once.\n"
"This is a trade-off between sqlite transaction overhead and\n"
"memory consumption (4096=100MB, as a rule of thumb)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Number of parallax occlusion iterations."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Overall bias of parallax occlusion effect, usually scale/2."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Overall scale of parallax occlusion effect."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Parallax occlusion"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Parallax occlusion Scale"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Parallax occlusion bias"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Parallax occlusion iterations"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Parallax occlusion mode"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Parallax occlusion strength"
msgstr "Parallax Occlusion"

#: src/settings_translation_file.cpp
msgid "Path to TrueTypeFont or bitmap."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Path to save screenshots at."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Path to texture directory. All textures are first searched from here."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Physics"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Player is able to fly without being affected by gravity.\n"
"This requires the \"fly\" privilege on the server."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Player name"
msgstr "Kullanıcı adı çok uzun."

#: src/settings_translation_file.cpp
msgid "Player transfer distance"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Player versus Player"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Port to connect to (UDP).\n"
"Note that the port field in the main menu overrides this setting."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Prevent mods from doing insecure things like running shell commands."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Print the engine's profiling data in regular intervals (in seconds). 0 = "
"disable. Useful for developers."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Privileges that players with basic_privs can grant"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Profiler"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Profiler toggle key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Profiling"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Radius of cloud area stated in number of 64 node cloud squares.\n"
"Values larger than 26 will start to produce sharp cutoffs at cloud area "
"corners."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Raises terrain to make valleys around the rivers"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Random input"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Range select key"
msgstr "Uzaklık seçimi"

#: src/settings_translation_file.cpp
msgid "Remote media"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Remote port"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Replaces the default main menu with a custom one."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Report path"
msgstr "Seç"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Right key"
msgstr "Sağ Menu"

#: src/settings_translation_file.cpp
msgid "Rightclick repetition interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "River Depth"
msgstr ""

#: src/settings_translation_file.cpp
msgid "River Noise"
msgstr ""

#: src/settings_translation_file.cpp
msgid "River Size"
msgstr ""

#: src/settings_translation_file.cpp
msgid "River noise -- rivers occur close to zero"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Rollback recording"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Round minimap"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Save the map received by the client on disk."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Saving map received from server"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Scale gui by a user specified value.\n"
"Use a nearest-neighbor-anti-alias filter to scale the GUI.\n"
"This will smooth over some of the rough edges, and blend\n"
"pixels when scaling down, at the cost of blurring some\n"
"edge pixels when images are scaled by non-integer sizes."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Screen height"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Screen width"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Screenshot"
msgstr "Ekran Resmi"

#: src/settings_translation_file.cpp
msgid "Screenshot folder"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Screenshot format"
msgstr "Ekran Resmi"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Screenshot quality"
msgstr "Ekran Resmi"

#: src/settings_translation_file.cpp
msgid ""
"Screenshot quality. Only used for JPEG format.\n"
"1 means worst quality; 100 means best quality.\n"
"Use 0 for default quality."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Security"
msgstr ""

#: src/settings_translation_file.cpp
msgid "See http://www.sqlite.org/pragma.html#pragma_synchronous"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Selection box border color (R,G,B)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Selection box color"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Selection box width"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Server / Singleplayer"
msgstr "Tek kişilik oyunu başlat"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Server URL"
msgstr "Sunucu Kur"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Server address"
msgstr "Sunucu portu"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Server description"
msgstr "Sunucu portu"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Server name"
msgstr "Sunucu Kur"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Server port"
msgstr "Sunucu portu"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Serverlist URL"
msgstr "Çevirimiçi Oyun Listesi"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Serverlist file"
msgstr "Çevirimiçi Oyun Listesi"

#: src/settings_translation_file.cpp
msgid ""
"Set the language. Leave empty to use the system language.\n"
"A restart is required after changing this."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Set to true enables waving leaves.\n"
"Requires shaders to be enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Set to true enables waving plants.\n"
"Requires shaders to be enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Set to true enables waving water.\n"
"Requires shaders to be enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Shaders allow advanced visual effects and may increase performance on some "
"video cards.\n"
"Thy only work with the OpenGL video backend."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Shape of the minimap. Enabled = round, disabled = square."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Show debug info"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Show entity selection boxes"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Shutdown message"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Size of chunks to be generated at once by mapgen, stated in mapblocks (16 "
"nodes)."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Slope and fill work together to modify the heights"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Smooth lighting"
msgstr "Pürüzsüz ışıklandırma"

#: src/settings_translation_file.cpp
msgid ""
"Smooths camera when looking around. Also called look or mouse smoothing.\n"
"Useful for recording videos."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Smooths rotation of camera in cinematic mode. 0 to disable."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Smooths rotation of camera. 0 to disable."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Sneak key"
msgstr "Sessiz Yürü"

#: src/settings_translation_file.cpp
msgid "Sound"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Specifies URL from which client fetches media instead of using UDP.\n"
"$filename should be accessible from $remote_media$filename via cURL\n"
"(obviously, remote_media should end with a slash).\n"
"Files that are not present will be fetched the usual way."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Static spawnpoint"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Strength of generated normalmaps."
msgstr "Normal haritalar oluştur"

#: src/settings_translation_file.cpp
msgid "Strength of parallax."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Strict protocol checking"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Support older servers"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Synchronous SQLite"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Terrain Height"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Terrain noise threshold for hills.\n"
"Controls proportion of world area covered by hills.\n"
"Adjust towards 0.0 for a larger proportion."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Terrain noise threshold for lakes.\n"
"Controls proportion of world area covered by lakes.\n"
"Adjust towards 0.0 for a larger proportion."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Texture path"
msgstr "Doku paketi"

#: src/settings_translation_file.cpp
msgid "The altitude at which temperature drops by 20C"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The default format in which profiles are being saved,\n"
"when calling `/profiler save [format]` without format."
msgstr ""

#: src/settings_translation_file.cpp
msgid "The depth of dirt or other filler"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The file path relative to your worldpath in which profiles will be saved "
"to.\n"
msgstr ""

#: src/settings_translation_file.cpp
msgid "The network interface that the server listens on."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The privileges that new users automatically get.\n"
"See /privs in game for a full list on your server and mod configuration."
msgstr ""

#: src/settings_translation_file.cpp
msgid "The rendering back-end for Irrlicht."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The sensitivity of the joystick axes for moving the\n"
"ingame view frustum around."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The strength (darkness) of node ambient-occlusion shading.\n"
"Lower is darker, Higher is lighter. The valid range of values for this\n"
"setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n"
"set to the nearest valid value."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The time (in seconds) that the liquids queue may grow beyond processing\n"
"capacity until an attempt is made to decrease its size by dumping old queue\n"
"items.  A value of 0 disables the functionality."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The time in seconds it takes between repeated events\n"
"when holding down a joystick button combination."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"The time in seconds it takes between repeated right clicks when holding the "
"right mouse button."
msgstr ""

#: src/settings_translation_file.cpp
msgid "This font will be used for certain languages."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Time in between active block management cycles"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Time in seconds for item entity (dropped items) to live.\n"
"Setting it to -1 disables the feature."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Time send interval"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Time speed"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Timeout for client to remove unused map data from memory."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"To reduce lag, block transfers are slowed down when a player is building "
"something.\n"
"This determines how long they are slowed down after placing or removing a "
"node."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Toggle camera mode key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Tooltip delay"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Trilinear filtering"
msgstr "Üç yönlü süzme"

#: src/settings_translation_file.cpp
msgid ""
"True = 256\n"
"False = 128\n"
"Useable to make minimap smoother on slower machines."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Trusted mods"
msgstr ""

#: src/settings_translation_file.cpp
msgid "URL to the server list displayed in the Multiplayer Tab."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Unlimited player transfer distance"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Unload unused server data"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Use 3D cloud look instead of flat."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Use a cloud animation for the main menu background."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Use anisotropic filtering when viewing at textures from an angle."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Use bilinear filtering when scaling textures."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Use key"
msgstr "tuşa bas"

#: src/settings_translation_file.cpp
msgid "Use mip mapping to scale textures. May slightly increase performance."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Use trilinear filtering when scaling textures."
msgstr ""

#: src/settings_translation_file.cpp
msgid "V-Sync"
msgstr ""

#: src/settings_translation_file.cpp
msgid "VBO"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Valley Depth"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Valley Fill"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Valley Profile"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Valley Slope"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Valleys C Flags"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Vertical screen synchronization."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Video driver"
msgstr ""

#: src/settings_translation_file.cpp
msgid "View bobbing"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"View distance in nodes.\n"
"Min = 20"
msgstr ""

#: src/settings_translation_file.cpp
msgid "View range decrease key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "View range increase key"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Viewing range"
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Volume"
msgstr "Ses yüksekliği :"

#: src/settings_translation_file.cpp
msgid ""
"W co-ordinate of the generated 3D slice of a 4D fractal.\n"
"Determines which 3D slice of the 4D shape is generated.\n"
"Has no effect on 3D fractals.\n"
"Range roughly -2 to 2."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Walking speed"
msgstr "Dalgalanan Yapraklar"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Water Features"
msgstr "Nesne dokuları ..."

#: src/settings_translation_file.cpp
msgid "Water level"
msgstr ""

#: src/settings_translation_file.cpp
msgid "Water surface level of the world."
msgstr ""

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Waving Nodes"
msgstr "Dalgalanan Yapraklar"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Waving leaves"
msgstr "Dalgalanan Yapraklar"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Waving plants"
msgstr "Dalgalanan Bitkiler"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Waving water"
msgstr "Dalgalanan Su"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Waving water height"
msgstr "Dalgalanan Su"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Waving water length"
msgstr "Dalgalanan Su"

#: src/settings_translation_file.cpp
#, fuzzy
msgid "Waving water speed"
msgstr "Dalgalanan Su"

#: src/settings_translation_file.cpp
msgid ""
"When gui_scaling_filter is true, all GUI images need to be\n"
"filtered in software, but some images are generated directly\n"
"to hardware (e.g. render-to-texture for nodes in inventory)."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"When gui_scaling_filter_txr2img is true, copy those images\n"
"from hardware to software for scaling.  When false, fall back\n"
"to the old scaling method, for video drivers that don't\n"
"properly support downloading textures back from hardware."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n"
"can be blurred, so automatically upscale them with nearest-neighbor\n"
"interpolation to preserve crisp pixels.  This sets the minimum texture size\n"
"for the upscaled textures; higher values look sharper, but require more\n"
"memory.  Powers of 2 are recommended.  Setting this higher than 1 may not\n"
"have a visible effect unless bilinear/trilinear/anisotropic filtering is\n"
"enabled."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Where the map generator stops.\n"
"Please note:\n"
"-    Limited to 31000 (setting above has no effect)\n"
"-    The map generator works in groups of 80x80x80 nodes (5x5x5 MapBlocks).\n"
"-    Those groups have an offset of -32, -32 nodes from the origin.\n"
"-    Only groups which are within the map_generation_limit are generated"
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Whether freetype fonts are used, requires freetype support to be compiled in."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Whether node texture animations should be desynchronized per mapblock."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Whether players are shown to clients without any range limit.\n"
"Deprecated, use the setting player_transfer_distance instead."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Whether to allow players to damage and kill each other."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Whether to ask clients to reconnect after a (Lua) crash.\n"
"Set this to true if your server is set up to restart automatically."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Whether to fog out the end of the visible area."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Whether to show the client debug info (has the same effect as hitting F5)."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"Whether to support older servers before protocol version 25.\n"
"Enable if you want to connect to 0.4.12 servers and before.\n"
"Servers starting with 0.4.13 will work, 0.4.12-dev servers may work.\n"
"Disabling this option will protect your password better."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Width component of the initial window size."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Width of the selectionbox's lines around nodes."
msgstr ""

#: src/settings_translation_file.cpp
msgid ""
"World directory (everything in the world is stored here).\n"
"Not needed if starting from the main menu."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Y of flat ground."
msgstr ""

#: src/settings_translation_file.cpp
msgid "Y of upper limit of large pseudorandom caves."
msgstr ""

#: src/settings_translation_file.cpp
msgid "cURL file download timeout"
msgstr ""

#: src/settings_translation_file.cpp
msgid "cURL parallel limit"
msgstr ""

#: src/settings_translation_file.cpp
msgid "cURL timeout"
msgstr ""

#, fuzzy
#~ msgid "Useful for mod developers."
#~ msgstr "Ana geliştiriciler"

#~ msgid "No of course not!"
#~ msgstr "Elbette hayır!"

#~ msgid "Public Serverlist"
#~ msgstr "Çevirimiçi Oyun Listesi"

#, fuzzy
#~ msgid "Generate Normalmaps"
#~ msgstr "Normal haritalar oluştur"

#~ msgid "No!!!"
#~ msgstr "Hayır!!!"

#~ msgid "\""
#~ msgstr "\""

#, fuzzy
#~ msgid "If disabled "
#~ msgstr "Paketi Kapat"

#, fuzzy
#~ msgid "If enabled, "
#~ msgstr "Etkinleştirildi"

#~ msgid "Rendering:"
#~ msgstr "Kaplama:"

#~ msgid "Restart minetest for driver change to take effect"
#~ msgstr "Değişikliklerin etkin olabilmesi için minetesti yeniden başlatın"

#~ msgid "Numpad "
#~ msgstr "Numpad "

#~ msgid " MB/s"
#~ msgstr " MB/s"

#~ msgid " KB/s"
#~ msgstr " KB/s"

#~ msgid "please wait..."
#~ msgstr "lütfen bekleyin..."

#~ msgid "Downloading"
#~ msgstr "İndiriliyor"

#~ msgid "Touch free target"
#~ msgstr "Touch free target"

#~ msgid "Scaling factor applied to menu elements: "
#~ msgstr "Ölçeklendirme menülere işlendi:"

#, fuzzy
#~ msgid "Preload inventory textures"
#~ msgstr "Dokular yükleniyor..."