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 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 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
|
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_blog
#
# Translators:
# emre oktem, 2024
# Melih Melik Sonmez, 2024
# abc Def <hdogan1974@gmail.com>, 2024
# dhkabayel <dhkabayel@gmail.com>, 2024
# Güven YILMAZ <guvenyilmaz@outlook.com.tr>, 2024
# İmat Yahya Çataklı <yahya.catakli@soluto.com.tr>, 2024
# Buket Şeker <buket_skr@hotmail.com>, 2024
# Thermo Dynamic <emirhanayar2004@gmail.com>, 2024
# Gökhan Erdoğdu <gokhan.erdogdu@mechsoft.com.tr>, 2024
# Tugay Hatıl <tugayh@projetgrup.com>, 2024
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2024
# Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2024
# Levent Karakaş <levent@mektup.at>, 2024
# Umur Akın <umura@projetgrup.com>, 2024
# Martin Trigaux, 2024
# Ediz Duman <neps1192@gmail.com>, 2024
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2024
# Murat Kaplan <muratk@projetgrup.com>, 2024
# Halil, 2024
# Murat Durmuş <muratd@projetgrup.com>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-26 08:56+0000\n"
"PO-Revision-Date: 2024-09-25 09:42+0000\n"
"Last-Translator: Murat Durmuş <muratd@projetgrup.com>, 2024\n"
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.date_selector
msgid "#{year}"
msgstr ""
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_blog.py:0
msgid "%s (copy)"
msgstr "%s (kopya)"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_feed
msgid "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
msgstr "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_short
msgid "' page header."
msgstr "'sayfa başlığı."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_short
msgid "'. Showing results for '"
msgstr "'. ' için sonuçlar gösteriliyor"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.date_selector
msgid "-- All dates"
msgstr "- Tüm tarihler"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"<b>Binoculars are lightweight and portable.</b> Unless you have the luxury "
"to set up and operate an observatory from your deck, you are probably going "
"to travel to perform your viewings. Binoculars go with you much easier and "
"they are more lightweight to carry to the country and use while you are "
"there than a cumbersome telescope set up kit."
msgstr ""
"<b>Dürbün hafif ve portatiftir.</b> Güvertenizden bir gözlemevi kurmak ve "
"işletmek için lüksünüz yoksa, muhtemelen görüşlerinizi gerçekleştirmek için "
"seyahat edeceksiniz. Dürbün seninle çok daha kolay gider ve ülkeye taşınması"
" ve oradayken kullanması daha zahmetli bir teleskop kurulum setinden daha "
"hafiftir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"<b>Pick the brains of the experts</b>. If you are not already active in an "
"astronomy society or club, the sales people at the telescope store will be "
"able to guide you to the active societies in your area. Once you have "
"connections with people who have bought telescopes, you can get advice about"
" what works and what to avoid that is more valid than anything you will get "
"from a web article or a salesperson at Wal-Mart."
msgstr ""
"<b>Uzmanların beyinlerini seçin</b>. Zaten bir astronomi topluluğunda veya "
"kulüpte aktif değilseniz, teleskop mağazasındaki satış personeli sizi "
"bölgenizdeki aktif toplumlara yönlendirebilir. Teleskop satın alan kişilerle"
" bağlantı kurduktan sonra, neyin işe yaradığı ve neyin önlenmesi gerektiği "
"konusunda bir web makalesinden veya Wal-Mart'taki bir satış elemanından "
"alacağınız her şeyden daha geçerli olduğu konusunda tavsiye alabilirsiniz."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "<b>Publish your blog post</b> to make it visible to your visitors."
msgstr ""
"Ziyaretçilerinize görünür kılmak için <b>Blog yayınınızı yayınlayın</b>."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_comment
msgid "<b>Sign in</b>"
msgstr "<b>Giriş</b>"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"<b>Try before you buy.</b> This is another advantage of going on some field "
"trips with the astronomy club. You can set aside some quality hours with "
"people who know telescopes and have their rigs set up to examine their "
"equipment, learn the key technical aspects, and try them out before you sink"
" money in your own set up."
msgstr ""
"<b>Satın almadan önce deneyin.</b> Bu, astronomi kulübü ile bazı saha "
"gezilerine gitmenin bir başka avantajı. Teleskopları bilen ve teçhizatlarını"
" ekipmanlarını incelemek, temel teknik yönleri öğrenmek ve kendi "
"kurulumunuzda para batırmadan önce denemek için ayarlanmış kişilerle bazı "
"kaliteli saatler ayırabilirsiniz."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid ""
"<b>Write your story here.</b> Use the top toolbar to style your text: add an"
" image or table, set bold or italic, etc. Drag and drop building blocks for "
"more graphical blogs."
msgstr ""
"<b>Hikayenizi buraya yazın.</b>Metninizi şekillendirmek için üst araç "
"çubuğunu kullanın: bir resim veya tablo ekleyin, kalın veya italik olarak "
"ayarlayın vb. Daha grafik bloglar için yapı taşlarını sürükleyip bırakın."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid ""
"<em class=\"h4 my-0\">Apart from the native population, the local wildlife "
"is also a major crowd puller.</em>"
msgstr ""
"<em class=\"h4 my-0\">Yerel nüfusun yanı sıra, yerel yaban hayatı da büyük "
"bir kalabalık çekici.</em>"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"<em class=\"h4 my-0\">It is critically important that you get just the right"
" telescope.</em>"
msgstr ""
"<em class=\"h4 my-0\">Sadece doğru teleskopu almanız kritik öneme "
"sahiptir.</em>"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"<em class=\"h4 my-0\">That “Wow” moment is what astrology is all about.</em>"
msgstr ""
"<em class=\"h4 my-0\">Bu “Vay” anı astrolojinin temelini oluşturuyor.</em>"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"<em class=\"h4 my-0\">The more reviews you read, the more you notice how "
"they tend to cluster at the extremes of opinion.</em>"
msgstr ""
"<em class=\"h4 my-0\">Ne kadar çok yorum okursanız, fikirlerin uç "
"noktalarında nasıl kümelenme eğiliminde olduklarını daha fazla fark "
"edersiniz.</em>"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid "<em class=\"h4 my-0\">There is something timeless about the cosmos.</em>"
msgstr "<em class=\"h4 my-0\">Evrende zamansız bir şey var.</em>"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"<em class=\"h4 my-0\">Your study of the moon, like anything else, can go "
"from the simple to the very complex.</em>"
msgstr ""
"<em class=\"h4 my-0\">Ay ile ilgili çalışmanız, her şey gibi, basit olandan "
"çok karmaşık olana kadar gidebilir.</em>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_tags_display
msgid "<em>No tags defined</em>"
msgstr "<em>Tanımlanmış etiket yok</em>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_complete
msgid ""
"<i class=\"fa fa-angle-down fa-3x text-white\" aria-label=\"To blog "
"content\" title=\"To blog content\"/>"
msgstr ""
"<i class=\"fa fa-angle-down fa-3x text-white\" aria-label=\"To blog "
"content\" title=\"To blog content\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_view_kanban
msgid ""
"<i class=\"fa fa-clock-o me-1\" role=\"img\" aria-label=\"Post date\" "
"title=\"Post date\"/>"
msgstr ""
"<i class=\"fa fa-clock-o me-1\" role=\"img\" aria-label=\"Post date\" "
"title=\"Post date\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid "<i class=\"fa fa-github text-github\" aria-label=\"Github\" title=\"Github\"/>"
msgstr "<i class=\"fa fa-github text-github\" aria-label=\"Github\" title=\"Github\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_view_kanban
msgid "<i class=\"fa fa-globe me-1\" title=\"Website\"/>"
msgstr "<i class=\"fa fa-globe me-1\" title=\"Website\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid ""
"<i class=\"fa fa-instagram text-instagram\" aria-label=\"Instagram\" "
"title=\"Instagram\"/>"
msgstr ""
"<i class=\"fa fa-instagram text-instagram\" aria-label=\"Instagram\" "
"title=\"Instagram\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid ""
"<i class=\"fa fa-linkedin text-linkedin\" aria-label=\"LinkedIn\" "
"title=\"LinkedIn\"/>"
msgstr ""
"<i class=\"fa fa-linkedin text-linkedin\" aria-label=\"LinkedIn\" "
"title=\"LinkedIn\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid "<i class=\"fa fa-rss-square\" aria-label=\"RSS\" title=\"RSS\"/>"
msgstr "<i class=\"fa fa-rss-square\" aria-label=\"RSS\" title=\"RSS\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid "<i class=\"fa fa-tiktok text-tiktok\" aria-label=\"TikTok\" title=\"TikTok\"/>"
msgstr ""
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid "<i class=\"fa fa-twitter text-twitter\" aria-label=\"X\" title=\"X\"/>"
msgstr ""
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid ""
"<i class=\"fa fa-youtube-play text-youtube\" aria-label=\"Youtube\" "
"title=\"Youtube\"/>"
msgstr ""
"<i class=\"fa fa-youtube-play text-youtube\" aria-label=\"Youtube\" "
"title=\"Youtube\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_read_next
msgid ""
"<span class=\"bg-o-color-3 h6 d-inline-block py-1 px-2 rounded-1\">Read "
"Next</span>"
msgstr ""
"<span class=\"bg-o-color-3 h6 d-inline-block py-1 px-2 rounded-1\">Sonrakini"
" Oku</span>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_read_next
msgid ""
"<span class=\"h4 d-inline-block py-1 px-2 rounded-1 text-white\">\n"
" <i class=\"fa fa-angle-right fa-3x text-white\" aria-label=\"Read next\" title=\"Read Next\"/>\n"
" </span>"
msgstr ""
"<span class=\"h4 d-inline-block py-1 px-2 rounded-1 text-white\">\n"
" <i class=\"fa fa-angle-right fa-3x text-white\" aria-label=\"Read next\" title=\"Read Next\"/>\n"
" </span>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "<span class=\"me-1\">Show:</span>"
msgstr "<span class=\"me-1\">Göstermek:</span>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blogs_nav
msgid "<span class=\"nav-link disabled ps-0\">Blogs:</span>"
msgstr "<span class=\"nav-link disabled ps-0\">Bloglar:</span>"
#. module: website_blog
#: model_terms:web_tour.tour,rainbow_man_message:website_blog.blog
msgid "<span><b>Good job!</b> You went through all steps of this tour.</span>"
msgstr ""
#. module: website_blog
#: model:blog.post,subtitle:website_blog.blog_post_2
msgid "A great way to discover hidden places"
msgstr "Gizli yerleri keşfetmenin harika bir yolu"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid ""
"A holiday to the Copper Canyon promises to be an exciting mix of relaxation,"
" culture, history, wildlife and hiking."
msgstr ""
"Bakır Kanyonu'ndaki bir tatil, dinlenme, kültür, tarih, vahşi yaşam ve "
"yürüyüşün heyecan verici bir karışımı olmayı vaat ediyor."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_template_new_post
msgid "A new post"
msgstr "Yeni bir yazı"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid ""
"A traveler may choose to explore the area by hiking around the canyon or "
"venturing into it. Detailed planning is required for those who wish to "
"venture into the depths of the canyon. There are a number of travel "
"companies that specialize in organizing tours to the region. Visitors can "
"fly to Copper Canyon using a tourist visa, which is valid for 180 days. "
"Travelers can also drive from anywhere in the United States and acquire a "
"visa at the Mexican customs station at the border."
msgstr ""
"Bir gezgin, kanyonun etrafında yürüyüş yaparak veya içine girerek bölgeyi "
"keşfetmeyi seçebilir. Kanyonun derinliklerine girmek isteyenler için "
"ayrıntılı planlama gereklidir. Bölgeye turlar düzenleme konusunda "
"uzmanlaşmış birçok seyahat şirketi var. Ziyaretçiler 180 gün boyunca geçerli"
" olan turist vizesi ile Copper Canyon'a uçabilirler. Gezginler ayrıca "
"Amerika Birleşik Devletleri'ndeki herhangi bir yerden araç kullanabilir ve "
"sınırdaki Meksika gümrük istasyonunda vize alabilirler."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.sidebar_blog_index
msgid "About us"
msgstr "Hakkımızda"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"Above all, <b>establish a relationship with a reputable telescope shop</b> "
"that employs people who know their stuff. If you buy your telescope at a "
"Wal-Mart or department store, the odds you will get the right thing are "
"remote."
msgstr ""
"Her şeyden önce, <b>eşyalarını bilen insanları kullanan saygın bir teleskop "
"</b>dükkanıyla bir ilişki kurun. Teleskopunuzu bir Wal-Mart veya mağazadan "
"satın alırsanız, doğru olanı elde etme olasılıkları uzaktır."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_template_new_post
msgid "Access post"
msgstr "Erişim postası"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_needaction
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_needaction
msgid "Action Needed"
msgstr "Aksiyon Gerekiyor"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__active
#: model:ir.model.fields,field_description:website_blog.field_blog_post__active
msgid "Active"
msgstr "Etkin"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_tags_display
msgid "Add some"
msgstr "Biraz ekle"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blogs_nav
msgid "All"
msgstr "Tümü"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blogs_nav
#: model_terms:ir.ui.view,arch_db:website_blog.post_breadcrumbs
msgid "All Blogs"
msgstr "Tüm Bloglar"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "All blogs"
msgstr "Tüm Bloglar"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Alone in the ocean"
msgstr "Okyanusta yalnız"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid "Along those lines, how difficult is the set up and break down?"
msgstr "Bu hatlar boyunca, kurulum ve bozulma ne kadar zor?"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/website_blog.js:0
msgid "Amazing blog article: %(title)s! Check it live: %(url)s"
msgstr ""
#. module: website_blog
#: model:blog.post,subtitle:website_blog.blog_post_1
msgid "An exciting mix of relaxation, culture, history, wildlife and hiking."
msgstr ""
"Dinlenme, kültür, tarih, yaban hayatı ve yürüyüşün heyecan verici bir "
"karışımı."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"And when all is said and done,<b> get equipped</b>. Your quest for newer and"
" better telescopes will be a lifelong one. Let yourself get addicted to "
"astronomy and the experience will enrich every aspect of life. It will be an"
" addiction you never want to break."
msgstr ""
"Ve her şey söylendiğinde <b> ve yapıldığında</b>. Daha yeni ve daha iyi "
"teleskop arayışınız ömür boyu sürecek. Kendinizi astronomiye bağımlı hale "
"getirdiğinizde deneyim yaşamın her yönünü zenginleştirecektir. Asla kırmak "
"istemediğiniz bir bağımlılık olacak."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid ""
"Another unique feature of Copper Canyon is the presence of the Tarahumara "
"Indian culture. These semi-nomadic people live in cave dwellings. Their "
"livelihood chiefly depends on farming and cattle ranching."
msgstr ""
"Bakır Kanyonunun bir başka eşsiz özelliği, Tarahumara Hint kültürünün "
"varlığıdır. Bu yarı göçebe insanlar mağara evlerinde yaşıyorlar. Geçim "
"kaynakları esas olarak çiftçiliğe ve sığır çiftliğine bağlıdır."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_archive_display
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Archive"
msgstr "Arşivle"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_blog_view_search
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_blog_form
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_search
msgid "Archived"
msgstr "Arşivlendi"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_archives
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Archives"
msgstr "Arşivler"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "Article"
msgstr "Yazı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "Articles"
msgstr "Makaleler"
#. module: website_blog
#: model:blog.blog,name:website_blog.blog_blog_2
msgid "Astronomy"
msgstr "Astronomi"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"Astronomy clubs are lively places full of knowledgeable amateurs who love to"
" share their knowledge with you. For the price of a coke and snacks, they "
"will go star gazing with you and overwhelm you with trivia and great "
"knowledge."
msgstr ""
"Astronomi kulüpleri, bilgilerini sizinle paylaşmayı seven bilgili "
"amatörlerle dolu canlı yerlerdir. Bir kola ve atıştırmalıkların fiyatı için,"
" size bakan yıldız gidecek ve trivia ve büyük bilgi ile sizi bunaltacak."
#. module: website_blog
#: model:blog.blog,subtitle:website_blog.blog_blog_2
msgid "Astronomy is “stargazing\""
msgstr "Astronomi “göz korkutucu”"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_short
msgid "Atom Feed"
msgstr "Atom Besleme"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_attachment_count
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_attachment_count
msgid "Attachment Count"
msgstr "Ek Sayısı"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__author_id
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_search
msgid "Author"
msgstr "Üretici"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__author_name
msgid "Author Name"
msgstr "Yazar Adı"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__author_avatar
msgid "Avatar"
msgstr "Avatar"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Awesome hotel rooms"
msgstr "Harika otel odaları"
#. module: website_blog
#: model:blog.post,subtitle:website_blog.blog_post_4
msgid "Be aware of this thing called “astronomy”"
msgstr "“Astronomi” denen şeyin farkında olun"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"Becoming part of the society of devoted amateur astronomers will give you "
"access to these organized efforts to reach new levels in our ability to "
"study the Earth’s moon. And it will give you peers and friends who share "
"your passion for astronomy and who can share their experience and areas of "
"expertise as you seek to find where you might look next in the huge night "
"sky, at the moon and beyond it in your quest for knowledge about the "
"seemingly endless universe above us."
msgstr ""
"Özverili amatör gökbilimciler topluluğunun bir parçası olmak, Dünya'nın "
"ayını inceleme yeteneğimizde yeni seviyelere ulaşmak için bu organize "
"çabalara erişmenizi sağlayacaktır. Ve size astronomi tutkunuzu paylaşan ve "
"deneyiminizi ve uzmanlık alanlarını paylaşan akranlarınıza ve "
"arkadaşlarınıza, büyük gece gökyüzünde, ayda ve ötesinde arayışınızda nereye"
" bakacağınızı bulmaya çalışacaksınız. üstümüzde görünen sonsuz evren "
"hakkında bilgi."
#. module: website_blog
#: model:blog.post,subtitle:website_blog.blog_post_7
msgid "Becoming part of the society of devoted amateur astronomers."
msgstr "Kendini adamış amatör gökbilimciler toplumunun bir parçası olmak."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Bedroom Facilities"
msgstr "Yatak Odası Olanakları"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"Before you go to that big expense, it might be a better next step from the "
"naked eye to invest in a good set of binoculars. There are even binoculars "
"that are suited for star gazing that will do just as good a job at giving "
"you that extra vision you want to see just a little better the wonders of "
"the universe. A well designed set of binoculars also gives you much more "
"mobility and ability to keep your “enhanced vision” at your fingertips when "
"that amazing view just presents itself to you."
msgstr ""
"Bu büyük masrafa gitmeden önce, iyi bir dürbün setine yatırım yapmak çıplak "
"gözle daha iyi bir sonraki adım olabilir. Hatta, evrenin harikalarını biraz "
"daha iyi görmek istediğiniz ekstra vizyonu vermekte olduğu kadar iyi bir iş "
"yapacak olan yıldızlara bakmak için uygun olan dürbünler bile var. İyi "
"tasarlanmış bir dürbün seti, bu muhteşem manzara size sunulduğunda “gelişmiş"
" vizyonunuzu” parmaklarınızın ucunda tutabilmeniz için çok daha fazla "
"hareketlilik ve yetenek sağlar."
#. module: website_blog
#: model:blog.post,subtitle:website_blog.blog_post_6
msgid "Before you make your first purchase…"
msgstr "İlk alışverişinizi yapmadan önce…"
#. module: website_blog
#: model:blog.post,name:website_blog.blog_post_7
msgid "Beyond The Eye"
msgstr "Gözün Ötesinde"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website.py:0
#: model:ir.model,name:website_blog.model_blog_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__blog_id
#: model:ir.ui.menu,name:website_blog.menu_website_blog_root_global
#: model:website.menu,name:website_blog.menu_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_blog_view_search
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_blog_form
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_search
msgid "Blog"
msgstr "Blog"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__name
msgid "Blog Name"
msgstr "Blog Adı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Blog Page"
msgstr "Blog Sayfası"
#. module: website_blog
#: model:ir.model,name:website_blog.model_blog_post
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_search
msgid "Blog Post"
msgstr "Blog Yazısı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_complete
msgid "Blog Post Cover"
msgstr "Blog Yazısı Kapağı"
#. module: website_blog
#: model:ir.actions.act_window,name:website_blog.action_blog_post
msgid "Blog Post Pages"
msgstr "Blog Yazısı Sayfaları"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_complete
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_view_form_add
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_read_next
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "Blog Post Title"
msgstr "Yazı Başlığı"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__blog_post_ids
#: model:ir.ui.menu,name:website_blog.menu_blog_post_pages
#: model_terms:ir.ui.view,arch_db:website_blog.website_blog
msgid "Blog Posts"
msgstr "Blog Yazıları"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__subtitle
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_cover_post_fullwidth_design
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "Blog Subtitle"
msgstr "Blog Altbaşlık"
#. module: website_blog
#: model:ir.model,name:website_blog.model_blog_tag
msgid "Blog Tag"
msgstr "Blog Etiket"
#. module: website_blog
#: model:ir.model,name:website_blog.model_blog_tag_category
msgid "Blog Tag Category"
msgstr "Blog Etiketi Kategorisi"
#. module: website_blog
#: model:ir.actions.act_window,name:website_blog.action_tags
msgid "Blog Tags"
msgstr "Etiketler"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_cover_post_fullwidth_design
msgid "Blog Title"
msgstr "Blog Başlığı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_cover_post
msgid "Blog's Title"
msgstr "Blog Başlığı"
#. module: website_blog
#: model:ir.actions.act_window,name:website_blog.action_blog_blog
#: model:ir.ui.menu,name:website_blog.menu_blog_global
#: model_terms:ir.ui.view,arch_db:website_blog.blog_searchbar_input_snippet_options
#: model_terms:ir.ui.view,arch_db:website_blog.blogs_nav
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_blog_list
#: model_terms:ir.ui.view,arch_db:website_blog.website_blog
msgid "Blogs"
msgstr "Bloglar"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Blogs List"
msgstr "Bloglar Listesi"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Blogs Page"
msgstr "Bloglar Sayfası"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Bottom"
msgstr "Alt"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Breadcrumb"
msgstr "İçerik Haritası"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"But how do you sift through the amazing choices on offer? And more "
"importantly, do you really trust the photographs and descriptions of the "
"hotels that they have awarded themselves with the motivation of getting "
"bookings? Traveler reviews can be helpful, but you need to exercise caution."
" They are often biased, sometimes out of date, and may not serve your "
"interests at all. How do you know that the features that are important to "
"the reviewer are important to you?"
msgstr ""
"Ama sunulan inanılmaz seçimleri nasıl gözden geçiriyorsunuz? Ve daha da "
"önemlisi, rezervasyon yaptırmanın motivasyonu ile kendilerine verdikleri "
"otellerin fotoğraflarına ve açıklamalarına gerçekten güveniyor musunuz? "
"Gezgin yorumları yardımcı olabilir, ancak dikkatli olmanız gerekir. "
"Genellikle önyargılıdır, bazen güncel değildir ve çıkarlarınıza hiç hizmet "
"etmeyebilir. İnceleyen için önemli olan özelliklerin sizin için önemli "
"olduğunu nereden biliyorsunuz?"
#. module: website_blog
#: model:blog.post,name:website_blog.blog_post_6
msgid "Buying A Telescope"
msgstr "Teleskop Alış"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"Buying the right telescope to take your love of astronomy to the next level "
"is a big next step in the development of your passion for the stars."
msgstr ""
"Astronomi sevginizi bir sonraki seviyeye taşımak için doğru teleskopu satın "
"almak, yıldızlara olan tutkunuzun gelişiminde büyük bir sonraki adımdır."
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__can_publish
msgid "Can Publish"
msgstr "Yayınlanabilir"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Cards"
msgstr "Kartlar"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__category_id
msgid "Category"
msgstr "Kategori"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Children’s’ Facilities"
msgstr "Çocuk Tesisleri"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Choose an image from the library."
msgstr "Kütüphaneden bir resim seçiniz."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Click here to add new content to your website."
msgstr "Web sitenize yeni içerik eklemek için buraya tıklayın."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid ""
"Click on \"<b>New</b>\" in the top-right corner to write your first blog "
"post."
msgstr ""
"İlk blog yazınızı yazmak için sağ üst köşedeki \"<b>Yeni' yi </b>\" "
"tıklayın."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blogs_nav
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "Close"
msgstr "Kapat"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__color
msgid "Color"
msgstr "Renk"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_regular_cover
msgid "Comment"
msgstr "Yorum"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_regular_cover
#: model_terms:ir.ui.view,arch_db:website_blog.post_info
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Comments"
msgstr "Yorumlar"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Comments/Views Stats"
msgstr "Yorumlar/Görünümler İstatistikleri"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__content
#: model:ir.model.fields,field_description:website_blog.field_blog_post__content
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_search
msgid "Content"
msgstr "İçerik"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid ""
"Copper Canyon is one of the six gorges in the area. Although the name "
"suggests that the gorge might have some relevance to copper mining, this is "
"not the case. The name is derived from the copper and green lichen covering "
"the canyon. Copper Canyon has two climatic zones. The region features an "
"alpine climate at the top and a subtropical climate at the lower levels. "
"Winters are cold with frequent snowstorms at the higher altitudes. Summers "
"are dry and hot. The capital city, Chihuahua, is a high altitude desert "
"where weather ranges from cold winters to hot summers. The region is unique "
"because of the various ecosystems that exist within it."
msgstr ""
"Copper Kanyon bölgedeki altı vadiden biridir. İsim, vadinin bakır "
"madenciliği ile ilgili olabileceğini düşündürse de, durum böyle değil. Adı "
"kanyonu kaplayan bakır ve yeşil likenden türetilmiştir. Bakır Kanyonu'nun "
"iki iklim bölgesi vardır. Bölgede üstte bir alpin iklim ve daha düşük "
"seviyelerde subtropikal bir iklim bulunmaktadır. Kışlar soğuk ve yüksek "
"rakımlı sık kar fırtınası. Yazlar kuru ve sıcak geçer. Başkent Chihuahua, "
"havanın soğuk kışlardan sıcak yazlara kadar değiştiği yüksek rakımlı bir "
"çöl. Bölge, içinde bulunan çeşitli ekosistemler nedeniyle eşsizdir."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Cover"
msgstr "Kapak"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__cover_properties
#: model:ir.model.fields,field_description:website_blog.field_blog_post__cover_properties
msgid "Cover Properties"
msgstr "Kapak Özellikleri"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__create_uid
#: model:ir.model.fields,field_description:website_blog.field_blog_post__create_uid
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__create_uid
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__create_uid
msgid "Created by"
msgstr "Tarafından oluşturuldu"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__create_date
#: model:ir.model.fields,field_description:website_blog.field_blog_post__create_date
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__create_date
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__create_date
msgid "Created on"
msgstr "Oluşturuldu"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Date"
msgstr "Tarih"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_searchbar_input_snippet_options
msgid "Date (new to old)"
msgstr "Tarih (yeniden eskiye)"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_searchbar_input_snippet_options
msgid "Date (old to new)"
msgstr "Tarih (eskiden yeniye)"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_searchbar_input_snippet_options
msgid "Description"
msgstr "Açıklama"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Dexter"
msgstr "Dexter"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__display_name
#: model:ir.model.fields,field_description:website_blog.field_blog_post__display_name
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__display_name
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__display_name
msgid "Display Name"
msgstr "İsim Göster"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid "East Maui"
msgstr "Doğu Maui"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"East Maui helicopter tours will give you a view of the ten thousand foot "
"volcano, Haleakala or House of the sun. This volcano is dormant and last "
"erupted in 1790. You will be able to see the crater of the volcano and the "
"dry, arid earth surrounding the south side of the volcano’s slop with Maui "
"helicopter tours."
msgstr ""
"Doğu Maui helikopter turları size on bin metrelik yanardağ, Haleakala veya "
"Güneş Evi'ni görecek. Bu yanardağ uykuda ve son olarak 1790'da patlak verdi."
" Yanardağın kraterini ve yanardağın güney tarafını çevreleyen kuru, kurak "
"dünyayı Maui helikopter turlarıyla görebileceksiniz."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_tags_display
msgid "Edit in backend"
msgstr "Arkaplanda düzenle"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_short
msgid "Edit the '"
msgstr "Düzenle '"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_short
msgid "Edit the 'All Blogs' page header."
msgstr "'Tüm Bloglar' sayfa başlığını düzenleyin."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_short
msgid "Edit the 'Filter Results' page header."
msgstr "'Sonuçları Filtrele' sayfa başlığını düzenleyin."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Edit your title, the subtitle is optional."
msgstr "Başlığınızı düzenleyin, altyazı isteğe bağlıdır."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Enter your post's title"
msgstr "Gönderinizin başlığını girin"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
msgid "Facebook"
msgstr "Facebook"
#. module: website_blog
#: model:blog.post,subtitle:website_blog.blog_post_3
msgid "Facts you should bear in mind."
msgstr "Aklınızda bulundurmanız gereken gerçekler."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"Finally and most importantly, the quality hotel directory inspection team "
"should have visited the hotel in question on a regular basis, met the staff,"
" slept in a bedroom and tried the food. They should experience the hotel as "
"only a hotel guest can and it is only then that they are really in a strong "
"position to write about the hotel."
msgstr ""
"Son olarak ve en önemlisi, kaliteli otel dizini denetim ekibi söz konusu "
"otel düzenli olarak ziyaret, personel bir araya geldi, bir yatak odasında "
"uyudu ve gıda çalıştı. Onlar sadece bir otel konuk olabilir gibi otel "
"deneyim ve ancak o zaman onlar gerçekten otel hakkında yazmak için güçlü bir"
" konumda olduğunu."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_follow_us
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Follow Us"
msgstr "Bizi takip et"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_follower_ids
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_follower_ids
msgid "Followers"
msgstr "Takipçiler"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_partner_ids
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_partner_ids
msgid "Followers (Partners)"
msgstr "Takipçiler (İş ortakları)"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"For many of us who are city dwellers, we don’t really notice that sky up "
"there on a routine basis. The lights of the city do a good job of disguising"
" the amazing display that is above all of our heads all of the time."
msgstr ""
"Şehir sakinleri olan birçoğumuz için, oradaki gökyüzünün rutin olarak "
"gerçekten farkına varmıyoruz. Şehrin ışıkları her zaman başımızın üstünde "
"olan muhteşem ekranı gizlemek için iyi bir iş çıkarıyor."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"For many of us, our very first experience of learning about the celestial "
"bodies begins when we saw our first full moon in the sky. It is truly a "
"magnificent view even to the naked eye."
msgstr ""
"Birçoğumuz için, gök cisimleri hakkında ilk öğrenme deneyimimiz, gökyüzünde "
"ilk dolunayımızı gördüğümüzde başlar. Çıplak gözle bile gerçekten muhteşem "
"bir manzara."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"From the tiniest baby to the most advanced astrophysicist, there is "
"something for anyone who wants to enjoy astronomy. In fact, it is a science "
"that is so accessible that virtually anybody can do it virtually anywhere "
"they are. All they have to know how to do is to look up."
msgstr ""
"En küçük bebekten en gelişmiş astrofizikçiye, astronomiden zevk almak "
"isteyen herkes için bir şey var. Aslında, o kadar erişilebilir bir bilimdir "
"ki, neredeyse herkes bunu neredeyse her yerde yapabilir. Tek yapmaları "
"gereken tek şey bakmak."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Full-Width"
msgstr "Tam genişlik"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid "Get a geek"
msgstr "Bir inek alın"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid "Get a telescope"
msgstr "Teleskop alın"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid "Get some history"
msgstr "Geçmiş alın"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid "Get started"
msgstr "Başla"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Grid"
msgstr "Tablo"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_search
msgid "Group By"
msgstr "Grupla"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__has_message
#: model:ir.model.fields,field_description:website_blog.field_blog_post__has_message
msgid "Has Message"
msgstr "Mesaj Var"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Here are some of the key facts you should bear in mind:"
msgstr "Aklınızda bulundurmanız gereken bazı önemli gerçekler:"
#. module: website_blog
#: model:blog.blog,subtitle:website_blog.blog_blog_1
msgid "Holiday tips"
msgstr "Tatil ipuçları"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Hover Effect"
msgstr ""
#. module: website_blog
#: model:blog.post,name:website_blog.blog_post_4
msgid "How To Look Up"
msgstr "Nasıl Bakılır"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"How complex is the telescope and will you have trouble with maintenance? "
"Network to get the answers to these and other questions. If you do your "
"homework like this, you will find just the right telescope for this next big"
" step in the evolution of your passion for astronomy."
msgstr ""
"Teleskop ne kadar karmaşık ve bakım konusunda sorun yaşar mısınız? Şebeke bu"
" ve diğer soruların cevaplarını almak için. Ödevinizi böyle yaparsanız, "
"astronomi tutkunuzun evriminde bir sonraki büyük adım için doğru teleskopu "
"bulacaksınız."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid "How mobile must your telescope be?"
msgstr "Teleskopunuz ne kadar hareketli olmalı?"
#. module: website_blog
#: model:blog.post,name:website_blog.blog_post_3
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_blog_posts_preview_data
msgid "How to choose the right hotel"
msgstr "Doğru otel nasıl seçilir"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__id
#: model:ir.model.fields,field_description:website_blog.field_blog_post__id
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__id
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__id
msgid "ID"
msgstr "ID"
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_blog__message_needaction
#: model:ir.model.fields,help:website_blog.field_blog_post__message_needaction
msgid "If checked, new messages require your attention."
msgstr "İşaretliyse, yeni mesajlar dikkatinize sunulacak."
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_blog__message_has_error
#: model:ir.model.fields,help:website_blog.field_blog_blog__message_has_sms_error
#: model:ir.model.fields,help:website_blog.field_blog_post__message_has_error
#: model:ir.model.fields,help:website_blog.field_blog_post__message_has_sms_error
msgid "If checked, some messages have a delivery error."
msgstr "İşaretliyse, bazı mesajlar gönderi hatası içermektedir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"If it matters that your hotel is, for example, on the beach, close to the "
"theme park, or convenient for the airport, then location is paramount. Any "
"decent directory should offer a location map of the hotel and its "
"surroundings. There should be distance charts to the airport offered as well"
" as some form of interactive map."
msgstr ""
"Otelinizin, örneğin sahilde, tema parkına yakın olması veya havaalanı için "
"uygun olması önemliyse, konum çok önemlidir. İyi bir dizin, otelin ve "
"çevresinin konum haritasını sunmalıdır. Sunulan havaalanına uzaklık "
"çizelgeleri ve bir çeşit interaktif harita olmalıdır."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"If the night is clear, you can see amazing detail of the lunar surface just star gazing on in your back yard.\n"
"Naturally, as you grow in your love of astronomy, you will find many celestial bodies fascinating. But the moon may always be our first love because is the one far away space object that has the unique distinction of flying close to the earth and upon which man has walked."
msgstr ""
"Gece açıksa, arka bahçenizde sadece yıldızlara bakan ay yüzeyinin inanılmaz detaylarını görebilirsiniz.\n"
"Doğal olarak, astronomi sevginizle büyüdükçe, birçok göksel cismi büyüleyici bulacaksınız. Ama ay her zaman ilk aşkımız olabilir, çünkü dünyaya yakın uçmak ve insanın üzerinde yürüdüğü eşsiz bir ayrıma sahip olan uzak bir uzay nesnesi."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.dynamic_filter_template_blog_post_card
#: model_terms:ir.ui.view,arch_db:website_blog.dynamic_filter_template_blog_post_horizontal
msgid "In"
msgstr "Birim"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"In many ways, it is a big step from someone who is just fooling around with "
"astronomy to a serious student of the science. But you and I both know that "
"there is still another big step after buying a telescope before you really "
"know how to use it."
msgstr ""
"Birçok yönden, astronomi ile dalga geçmeyi başaran birinin bilimden ciddi "
"bir öğrenciye büyük bir adım. Ama sen ve ben, teleskop satın aldıktan sonra "
"nasıl kullanılacağını gerçekten bilmeden önce hala büyük bir adım olduğunu "
"biliyoruz."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Increase Readability"
msgstr "Okunabilirliği Artırın"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_is_follower
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_is_follower
msgid "Is Follower"
msgstr "Takipçi mi"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__is_published
msgid "Is Published"
msgstr "Yayınlandı"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Islands"
msgstr "Adalar"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"It is great fun to start learning the constellations, how to navigate the "
"night sky and find the planets and the famous stars. There are web sites and"
" books galore to guide you."
msgstr ""
"Takımyıldızları, gece gökyüzünde nasıl gezinileceğini ve gezegenleri ve ünlü"
" yıldızları nasıl bulacağınızı öğrenmek çok eğlenceli. Size rehberlik edecek"
" web siteleri ve kitaplar var."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"It is important to choose a hotel that makes you feel comfortable – "
"contemporary or traditional furnishings, local decor or international, "
"formal or relaxed. The ideal hotel directory should let you know of the "
"options available."
msgstr ""
"Kendinizi rahat hissettiren bir otel seçmek önemlidir - çağdaş veya "
"geleneksel mobilyalar, yerel dekor veya uluslararası, resmi veya rahat. "
"İdeal otel dizini mevcut seçenekleri size bildirmelidir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"It is safe to say that at some point on our lives, each and every one of us "
"has that moment when we are suddenly stunned when we come face to face with "
"the enormity of the universe that we see in the night sky."
msgstr ""
"Hayatımızın bir noktasında, her birimizin, gece gökyüzünde gördüğümüz "
"evrenin büyüklüğüyle yüz yüze geldiğimizde aniden sersemlediğimiz o anı "
"olduğunu söylemek güvenlidir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"It really is amazing when you think about it that just by looking up on any "
"given night, you could see virtually hundreds of thousands of stars, star "
"systems, planets, moons, asteroids, comets and maybe a even an occasional "
"space shuttle might wander by. It is even more breathtaking when you realize"
" that the sky you are looking up at is for all intents and purposes the "
"exact same sky that our ancestors hundreds and thousands of years ago "
"enjoyed when they just looked up."
msgstr ""
"Herhangi bir geceye bakarak neredeyse yüz binlerce yıldız, yıldız sistemi, "
"gezegen, uydu, asteroit, kuyruklu yıldız ve hatta arada bir uzay mekiği "
"görebileceğinizi düşündüğünüzde gerçekten şaşırtıcıdır. . Baktığınız "
"gökyüzünün tüm niyetler ve amaçlar için, atalarımızın yüzlerce ve binlerce "
"yıl önce yeni baktıklarında keyif aldıkları aynı gökyüzü olduğunu fark "
"ettiğinizde daha da nefes kesici."
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Jungle"
msgstr "Orman"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid "Know what you are looking at"
msgstr "Neye baktığınızı bilin"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid "Know when to look"
msgstr "Ne zaman bakacağını bil"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/options.js:0
msgid "Large"
msgstr "Geniş"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__write_uid
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_search
msgid "Last Contributor"
msgstr "Son katılımcı"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__write_uid
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__write_uid
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__write_uid
msgid "Last Updated by"
msgstr "Son Güncelleyen"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__write_date
#: model:ir.model.fields,field_description:website_blog.field_blog_post__write_date
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__write_date
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__write_date
msgid "Last Updated on"
msgstr "Son Güncelleme"
#. module: website_blog
#: model:website.snippet.filter,name:website_blog.dynamic_filter_latest_blog_posts
msgid "Latest Blog Posts"
msgstr "Son blog yazıları"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Layout"
msgstr "Düzen"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"Learning the background to the great discoveries in astronomy will make your"
" moments star gazing more meaningful. It is one of the oldest sciences on "
"earth so find out the greats of history who have looked at these stars "
"before you."
msgstr ""
"Astronomi alanındaki büyük keşiflerin arka planını öğrenmek, anlarınızın "
"yıldızlara daha anlamlı bakmasını sağlayacaktır. Dünyadaki en eski "
"bilimlerden biridir, bu yüzden sizden önce bu yıldızlara bakan tarihin "
"büyüklerini öğrenin."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Leisure Facilities"
msgstr "Eğlence tesisleri"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
msgid "LinkedIn"
msgstr "LinkedIn"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "List"
msgstr "Liste"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"Local color is great but the hotel’s own restaurants and bars can play an "
"important part in your stay. You should be aware of choice, style and "
"whether or not they are smart or informal. A good hotel report should tell "
"you this, and particularly about breakfast facilities."
msgstr ""
"Yerel renk harika ama otelin kendi restoran ve barları konaklamanızda önemli"
" bir rol oynayabilir. Seçim, stil ve akıllı ya da gayri resmi olup "
"olmadıklarının farkında olmalısınız. İyi bir otel raporu size bunu ve "
"özellikle kahvaltı tesisleri hakkında bilgi vermelidir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Location"
msgstr "Konum"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Marley"
msgstr "Marley"
#. module: website_blog
#: model:blog.post,name:website_blog.blog_post_2
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_blog_posts_preview_data
msgid "Maui helicopter tours"
msgstr "Maui helikopter turları"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"Maui helicopter tours are a great way to see the island from a different "
"perspective and have a fun adventure. If you have never been on a helicopter"
" before, this is a great place to do it."
msgstr ""
"Maui helikopter turları, adayı farklı bir perspektiften görmenin ve "
"eğlenceli bir maceraya çıkmanın harika bir yoludur. Daha önce hiç "
"helikopterde bulunmadıysanız, bunu yapmak için harika bir yerdir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"Maui helicopter tours are a great way to tour those places that can not be "
"reached on foot or by car. The tours last approximately one hour and range "
"from approximately one hundred eight five dollars to two hundred forty "
"dollars person. For many, this is a once in a lifetime opportunity to see "
"natural scenery that will not be available again. Taking cameras and videos "
"to capture the moments will also allow you to relive the tour again and "
"again as you reminisce throughout the years."
msgstr ""
"Maui helikopter turları, yürüyerek veya araba ile ulaşılamayan yerleri "
"gezmek için harika bir yoldur. Turlar yaklaşık bir saat sürüyor ve yaklaşık "
"yüz sekiz beş dolar ile iki yüz kırk dolar arasında değişiyor. Birçoğu için,"
" bu bir kez daha mevcut olmayacak doğal manzarayı görmek için ömür boyu bir "
"fırsattır. Anları yakalamak için kamera ve video çekmek, turu yıllar boyunca"
" anımsadıkça tekrar tekrar yaşamanıza izin verecektir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"Maui helicopter tours will allow you to see all of these sights. Make sure "
"to take a camera or video with you when going on Maui helicopter tours to "
"capture the beauty of the scenery and to show friends and family at home all"
" the wonderful things you saw while on vacation."
msgstr ""
"Maui helikopter turları tüm bu manzaraları görmenizi sağlayacaktır. Maui "
"helikopter turlarına çıkarken manzaranın güzelliğini yakalamak ve tatilde "
"gördüğünüz tüm harika şeyleri arkadaşlarınıza ve ailenize göstermek için bir"
" kamera veya video çektiğinizden emin olun."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/options.js:0
msgid "Medium"
msgstr "Aracı:"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_has_error
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_has_error
msgid "Message Delivery error"
msgstr "Mesaj Teslim hatası"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_ids
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_ids
msgid "Messages"
msgstr "Mesajlar"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "Meta Description"
msgstr "Meta Açıklaması"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "Meta Keywords"
msgstr "Anahtar Kelimeler"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "Meta Title"
msgstr "Meta Başlık"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid "Molokai Maui"
msgstr "Molokai Maui"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"Molokai Maui helicopter tours will take you to a different island but one that is only nine miles away and easily accessible by air. This island has a very small population with a different culture and scenery. The entire coast of the northeast is lined with cliffs and remote beaches. They are completely inaccessible by any other means of transportation than air.\n"
"People who live on the island have never even seen this remarkable scenery unless they have taken Maui helicopter tours to view it. When the weather has been rainy and there is a lot of rainfall for he season you will see many astounding waterfalls."
msgstr ""
"Molokai Maui helikopter turları sizi farklı bir adaya götürecek, ancak sadece dokuz mil uzakta ve hava yoluyla kolayca erişilebilir bir adaya götürecek. Bu ada, farklı kültür ve manzaraya sahip çok küçük bir nüfusa sahiptir. Kuzeydoğunun tüm kıyısı uçurumlar ve uzak plajlarla kaplıdır. Havadan başka herhangi bir ulaşım aracıyla tamamen erişilemezler.\n"
"Adada yaşayan insanlar, onu görmek için Maui helikopter turları yapmadıkça, bu olağanüstü manzarayı hiç görmediler. Hava yağmurlu olduğunda ve sezonu için çok yağış olduğunda birçok şaşırtıcı şelale göreceksiniz."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"More important to the family traveler than the business traveler, you should"
" find out just how child friendly the hotel is from the directory and make "
"your decision from there. One thing worth looking for is whether the hotel "
"offers a baby sitters service. For the business traveler wishing to escape "
"children this is of course very relevant too – perhaps a hotel that is not "
"child friendly would be something more appropriate!"
msgstr ""
"Aile gezginleri için iş seyahatinden daha önemli, otelin dizinden ne kadar "
"çocuk dostu olduğunu öğrenmeli ve kararınızı oradan vermelisiniz. Aramaya "
"değer bir şey, otelin bir bebek bakıcısı hizmeti sunuyor olup olmadığıdır. "
"Çocuk kaçmak isteyen iş seyahat edenler için bu elbette çok ilgili - belki "
"çocuk dostu olmayan bir otel daha uygun bir şey olurdu!"
#. module: website_blog
#: model:website.snippet.filter,name:website_blog.dynamic_filter_most_viewed_blog_posts
msgid "Most Viewed Blog Posts"
msgstr "En Çok Görüntülenen Blog Gönderileri"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__name
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__name
msgid "Name"
msgstr "Adı"
#. module: website_blog
#: model:ir.actions.act_window,name:website_blog.blog_post_action_add
msgid "New Blog Post"
msgstr "Yeni Blog Yazısı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Next Article"
msgstr "Sonraki Makale"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "No Cover"
msgstr "Kapak Yok"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "No blog post yet."
msgstr "Henüz blog yazısı yazılmadı."
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__visits
msgid "No of Views"
msgstr "Görünümler"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "No results for \"%s\"."
msgstr "\"%s\" için sonuç bulunamadı."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_short
msgid "No results found for '"
msgstr "' için sonuç bulunamadı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_tags
msgid "No tags defined yet."
msgstr "Henüz tanımlanmış etiket yok."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "None"
msgstr "Hiçbiri"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"None of this precludes you from moving forward with your plans to put "
"together an awesome telescope system. Just be sure you get quality advice "
"and training on how to configure your telescope to meet your needs. Using "
"these guidelines, you will enjoy hours of enjoyment stargazing at the "
"phenomenal sights in the night sky that are beyond the naked eye."
msgstr ""
"Bunların hiçbiri, harika bir teleskop sistemini bir araya getirme "
"planlarınızla ilerlemenizi engellemez. Teleskopunuzu ihtiyaçlarınızı "
"karşılayacak şekilde nasıl yapılandıracağınız konusunda kaliteli tavsiye ve "
"eğitim aldığınızdan emin olun. Bu yönergeleri kullanarak, gece gökyüzündeki "
"çıplak gözün ötesindeki olağanüstü manzaralarda saatlerce keyifle "
"eğleneceksiniz."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Normal"
msgstr "Normal"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Normal picture"
msgstr ""
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_view_kanban
msgid "Not Published"
msgstr "Yayınlanmadı"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"Not only knowing the weather will make sure your star gazing is rewarding "
"but if you learn when the big meteor showers and other big astronomy events "
"will happen will make the excitement of astronomy come alive for you."
msgstr ""
"Sadece havanın bilinmesi yıldız bakışınızın ödüllendirilmesini sağlamakla "
"kalmaz, aynı zamanda büyük meteor yağmurlarının ve diğer büyük astronomi "
"olaylarının ne zaman gerçekleşeceğini öğrenirseniz astronomi heyecanını "
"sizin için canlandıracaktır."
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_needaction_counter
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_needaction_counter
msgid "Number of Actions"
msgstr "Aksiyon Sayısı"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_has_error_counter
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_has_error_counter
msgid "Number of errors"
msgstr "Hata adedi"
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_blog__message_needaction_counter
#: model:ir.model.fields,help:website_blog.field_blog_post__message_needaction_counter
msgid "Number of messages requiring action"
msgstr "İşlem gerektiren mesaj sayısı"
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_blog__message_has_error_counter
#: model:ir.model.fields,help:website_blog.field_blog_post__message_has_error_counter
msgid "Number of messages with delivery error"
msgstr "Teslimat hatası olan mesaj adedi"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"Of course, to take your moon worship to the ultimate, stepping your "
"equipment up to a good starter telescope will give you the most stunning "
"detail of the lunar surface. With each of these upgrades your knowledge and "
"the depth and scope of what you will be able to see will improve "
"geometrically. For many amateur astronomers, we sometimes cannot get enough "
"of what we can see on this our closest space object."
msgstr ""
"Tabii ki, ay ibadetinizi en üst düzeye çıkarmak için, ekipmanınızı iyi bir "
"başlangıç teleskopuna yükseltmek size ay yüzeyinin en çarpıcı detayını "
"verecektir. Bu yükseltmelerin her biri ile bilginizi ve görebileceklerin "
"derinliği ve kapsamı geometrik olarak gelişecektir. Birçok amatör gökbilimci"
" için, bazen en yakın uzay nesnemiz üzerinde görebildiğimiz şeyden yeterince"
" yararlanamıyoruz."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid ""
"Once you have reviewed the content on mobile, you can switch back to the "
"normal view by clicking here again"
msgstr ""
"Mobil cihazlarda içeriği inceledikten sonra, buraya tekrar tıklayarak normal"
" görünüme geri dönebilirsiniz."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_tags
msgid "Others"
msgstr "Diğerleri"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_cover_post
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_cover_post_fullwidth_design
msgid "Our Latest Posts"
msgstr ""
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_blogs_display
msgid "Our blogs"
msgstr "Bloglarımız"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid "Photo by Anton Repponen, @repponen"
msgstr "Fotoğrafı çeken Anton Repponen, @repponen"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid "Photo by Arto Marttinen, @wandervisions"
msgstr "Fotoğraf Arto Marttinen, @wandervisions"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid "Photo by Boris Smokrovic, @borisworkshop"
msgstr "Fotoğrafı çeken Boris Smokrovic, @borisworkshop"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid "Photo by Denys Nevozhai, @dnevozhai"
msgstr "Photo by Denys Nevozhai, @dnevozhai"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid "Photo by Greg Rakozy, @grakozy"
msgstr "Fotoğrafı çeken Greg Rakozy, @grakozy"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Photo by Jason Briscoe, @jbriscoe"
msgstr "Fotoğrafı çeken Jason Briscoe, @jbriscoe"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid "Photo by Jon Ly, @jonatron"
msgstr "Fotoğrafı çeken Jon Ly, @jonatron"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid "Photo by Patrick Brinksma, @patrickbrinksma"
msgstr "Fotoğrafı çeken Patrick Brinksma, @patrickbrinksma"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid "Photo by PoloX Hernandez, @elpolox"
msgstr "Fotoğrafı çeken PoloX Hernandez, @elpolox"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid "Photo by SpaceX, @spacex"
msgstr "Fotoğraf SpaceX, @spacex"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid "Photo by Teddy Kelley, @teddykelley"
msgstr "Fotoğrafı çeken Teddy Kelley, @teddykelley"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Picture size"
msgstr ""
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__blog_post_count
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__post_ids
msgid "Posts"
msgstr "Yazılar"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Posts List"
msgstr "Mesaj Listesi"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_searchbar_input_snippet_options
msgid "Publication Date"
msgstr "Yayın tarihi"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_view_kanban
msgid "Published"
msgstr "Yayınlandı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "Published ("
msgstr "Yayınlanan ("
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__published_date
msgid "Published Date"
msgstr "Yayın Tarihi"
#. module: website_blog
#: model:mail.message.subtype,description:website_blog.mt_blog_blog_published
#: model:mail.message.subtype,name:website_blog.mt_blog_blog_published
msgid "Published Post"
msgstr "Yayınlanmış"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "Publishing Options"
msgstr "Yayınlama Seçenekleri"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__post_date
msgid "Publishing date"
msgstr "Yayınlanma Tarihi"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__rating_ids
#: model:ir.model.fields,field_description:website_blog.field_blog_post__rating_ids
msgid "Ratings"
msgstr "Değerlendirmeler"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "Read more <i class=\"oi oi-chevron-right ms-2\"/>"
msgstr ""
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Restaurants, Cafes and Bars"
msgstr "Restoranlar, Kafeler ve Barlar"
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_blog__website_id
#: model:ir.model.fields,help:website_blog.field_blog_post__website_id
msgid "Restrict to a specific website."
msgstr ""
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "SEO"
msgstr "SEO"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__is_seo_optimized
#: model:ir.model.fields,field_description:website_blog.field_blog_post__is_seo_optimized
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__is_seo_optimized
msgid "SEO optimized"
msgstr "SEO en iyileştirildi"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__message_has_sms_error
#: model:ir.model.fields,field_description:website_blog.field_blog_post__message_has_sms_error
msgid "SMS Delivery error"
msgstr "SMS İleti hatası"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.dynamic_filter_template_blog_post_big_picture
#: model_terms:ir.ui.view,arch_db:website_blog.dynamic_filter_template_blog_post_card
#: model_terms:ir.ui.view,arch_db:website_blog.dynamic_filter_template_blog_post_horizontal
#: model_terms:ir.ui.view,arch_db:website_blog.dynamic_filter_template_blog_post_list
msgid "Sample"
msgstr "Örneklem"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Satellites"
msgstr "Uydu"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Search for an image. (eg: type \"business\")"
msgstr "Bir resim arayın. (örn.: \"business\" yazın)"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Seaside vs mountain side"
msgstr "Deniz kenarı vs dağ tarafı"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Seeing the world from above"
msgstr "Dünyayı yukarıdan görmek"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_view_form_add
msgid "Select Blog"
msgstr "Blog Seçin"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Select the blog you want to add the post to."
msgstr "Gönderiyi eklemek istediğiniz blogu seçin."
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Select this menu item to create a new blog post."
msgstr "Yeni bir blog yazısı oluşturmak için bu menü öğesini seçin."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Select to Comment"
msgstr "Yorum Yapmak İçin Seç"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Select to Tweet"
msgstr "Tweetlemek için Seç"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__seo_name
#: model:ir.model.fields,field_description:website_blog.field_blog_post__seo_name
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__seo_name
msgid "Seo name"
msgstr "Seo adı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.view_blog_post_form
msgid "Separate every keyword with a comma"
msgstr "Her anahtar kelimeyi virgülle ayırın"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Set a blog post <b>cover</b>."
msgstr "Bir blog yayını <b>kapağı </b> ayarlayın."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid ""
"Several migratory and native birds, mammals and reptiles call Copper Canyon "
"their home. The exquisite fauna in this near-pristine land is also worth "
"checking out."
msgstr ""
"Bazı göçmen ve yerli kuşlar, memeliler ve sürüngenler Copper Canyon'u "
"evlerine çağırırlar. Bu bozulmamış arazideki enfes fauna da kontrol edilmeye"
" değer."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Share Links"
msgstr "Bağlantıları Paylaş"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
msgid "Share on Facebook"
msgstr "Facebook'ta Paylaş"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
msgid "Share on LinkedIn"
msgstr "LinkedIn'de paylaş"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
msgid "Share on X"
msgstr ""
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
msgid "Share this post"
msgstr "Bu gönderiyi paylaş"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Sidebar"
msgstr "Kenar Çubuğu"
#. module: website_blog
#: model:blog.post,name:website_blog.blog_post_1
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_blog_posts_preview_data
msgid "Sierra Tarahumara"
msgstr "Sierra Tarahumara"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
msgid ""
"Sierra Tarahumara, popularly known as Copper Canyon is situated in Mexico. "
"The area is a favorite destination among those seeking an adventurous "
"vacation."
msgstr ""
"Popüler olarak Bakır Kanyonu olarak bilinen Sierra Tarahumara, Meksika'da "
"yer almaktadır. Bölge, macera dolu bir tatil isteyenler arasında favori bir "
"destinasyondur."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Silly-Chico"
msgstr "Aptal-Chico"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Skies"
msgstr "Gökyüzü"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Smaller"
msgstr ""
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Smaller picture"
msgstr ""
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"So it is critically important that you get just the right telescope for "
"where you are and what your star gazing preferences are. To start with, "
"let’s discuss the three major kinds of telescopes and then lay down some "
"“Telescope 101″ concepts to increase your chances that you will buy the "
"right thing."
msgstr ""
"Bu nedenle, bulunduğunuz yer ve yıldız bakış tercihlerinizin ne olduğu için "
"doğru teleskopu almanız kritik önem taşır. Başlamak için, üç ana teleskop "
"türünü tartışalım ve sonra doğru olanı satın alma şansınızı artırmak için "
"bazı “Telescope 101 ″ kavramları ortaya koyalım."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"So it might be that once a year vacation to a camping spot or a trip to a "
"relative’s house out in the country that we find ourselves outside when the "
"spender of the night sky suddenly decides to put on it’s spectacular show. "
"If you have had that kind of moment when you were literally struck "
"breathless by the spender the night sky can show to us, you can probably "
"remember that exact moment when you could say little else but “wow” at what "
"you saw."
msgstr ""
"Bu nedenle, yılda bir kez bir kamp yerine tatil yapmak ya da gece gökyüzünün"
" harcaması aniden muhteşem şovu yapmaya karar verdiğinde dışarıda bulduğumuz"
" ülkede bir akrabanın evine bir yolculuk olabilir. Eğer gece gökyüzünün bize"
" gösterebileceği, harcamacı tarafından nefessiz bir şekilde vurulduğunuzda "
"bu tür bir an yaşadıysanız, muhtemelen gördüklerinizde “vay” diyebildiğiniz "
"anı hatırlayabilirsiniz."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"So to select just the right kind of telescope, your objectives in using the "
"telescope are important. To really understand the strengths and weaknesses "
"not only of the lenses and telescope design but also in how the telescope "
"performs in various star gazing situations, it is best to do some homework "
"up front and get exposure to the different kinds. So before you make your "
"first purchase…"
msgstr ""
"Bu nedenle, sadece doğru türde bir teleskop seçmek için, teleskopu kullanma "
"hedefleriniz önemlidir. Sadece merceklerin ve teleskop tasarımının değil, "
"aynı zamanda teleskopun çeşitli yıldızlara bakma durumlarında nasıl "
"performans gösterdiğini güçlü ve zayıf yönlerini gerçekten anlamak için, "
"ödevleri yapmak ve farklı türlere maruz kalmak en iyisidir. İlk satın "
"alımınızı yapmadan önce…"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"So you’re going abroad, you’ve chosen your destination and now you have to "
"choose a hotel."
msgstr ""
"Yani yurtdışına gidiyorsunuz, varış noktanızı seçtiniz ve şimdi bir otel "
"seçmelisiniz."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_1
#: model_terms:blog.post,content:website_blog.blog_post_3
#: model_terms:blog.post,content:website_blog.blog_post_4
#: model_terms:blog.post,content:website_blog.blog_post_5
#: model_terms:blog.post,content:website_blog.blog_post_6
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid "Someone famous in <cite title=\"Source Title\">Source Title</cite>"
msgstr "<cite title=\"Source Title\">Source Title</cite> ile ünlü biri"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Spotting the fauna"
msgstr "Faunanın tespit edilmesi"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_blog.py:0
msgid "Start writing here..."
msgstr "Buraya yazmaya başlayın ..."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid "Style"
msgstr "Stil"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__subtitle
msgid "Sub Title"
msgstr "Alt Başlığı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_complete
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_cover_post
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_read_next
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_regular_cover
msgid "Subtitle"
msgstr "Alt Başlık"
#. module: website_blog
#: model:ir.ui.menu,name:website_blog.menu_website_blog_tag_category_global
#: model_terms:ir.ui.view,arch_db:website_blog.blog_tag_category_tree
msgid "Tag Categories"
msgstr "Etiket Kategorileri"
#. module: website_blog
#: model:ir.actions.act_window,name:website_blog.action_tag_category
msgid "Tag Category"
msgstr "Etiket Kategorisi"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_tag_category_form
msgid "Tag Category Form"
msgstr "Etiket Kategori Formu"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_tag_form
msgid "Tag Form"
msgstr "Etiket Formu"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_tag_tree
msgid "Tag List"
msgstr "Etiket Listesi"
#. module: website_blog
#: model:ir.model.constraint,message:website_blog.constraint_blog_tag_category_name_uniq
msgid "Tag category already exists!"
msgstr ""
#. module: website_blog
#: model:ir.model.constraint,message:website_blog.constraint_blog_tag_name_uniq
msgid "Tag name already exists!"
msgstr "Etiket adı zaten mevcut!"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__tag_ids
#: model:ir.model.fields,field_description:website_blog.field_blog_tag_category__tag_ids
#: model:ir.ui.menu,name:website_blog.menu_blog_tag_global
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_tags_display
#: model_terms:ir.ui.view,arch_db:website_blog.opt_sidebar_blog_index_tags
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Tags"
msgstr "Etiketler"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Tags List"
msgstr "Etiketler Listesi"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Taking pictures in the dark"
msgstr "Karanlıkta fotoğraf çekme"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__teaser
#: model_terms:ir.ui.view,arch_db:website_blog.s_dynamic_snippet_options_template
msgid "Teaser"
msgstr "Bulmaca"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Teaser & Tags"
msgstr "Teaser & Etiketler"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__teaser_manual
msgid "Teaser Content"
msgstr "Bulmaca İçeriği"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"Ten years ago, you’d have probably visited your local travel agent and "
"trusted the face-to-face advice you were given by the so called ‘experts’. "
"The 21st Century way to select and book your hotel is of course on the "
"Internet, by using travel websites."
msgstr ""
"On yıl önce, muhtemelen yerel seyahat acentenizi ziyaret etmiş ve “uzmanlar”"
" tarafından size verilen yüz yüze tavsiyeye güvenmiş olursunuz. Otelinizi "
"seçmek ve ayırtmak için 21. Yüzyıl yolu elbette seyahat web sitelerini "
"kullanarak internette."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"That “Wow” moment is what astrology is all about. For some, that wow moment "
"becomes a passion that leads to a career studying the stars. For a lucky "
"few, that wow moment because an all consuming obsession that leads to them "
"traveling to the stars in the space shuttle or on one of our early space "
"missions. But for most of us astrology may become a pastime or a regular "
"hobby. But we carry that wow moment with us for the rest of our lives and "
"begin looking for ways to look deeper and learn more about the spectacular "
"universe we see in the millions of stars above us each night."
msgstr ""
"Bu “Vay” anı astrolojinin temelini oluşturuyor. Bazıları için, bu vay anı, "
"yıldızları inceleyen bir kariyere yol açan bir tutku haline gelir. Şanslı "
"bir kaç için, o vay anı, çünkü uzay mekiğinde veya erken uzay "
"görevlerimizden birinde yıldızlara seyahat etmelerine yol açan tüm tüketen "
"bir saplantı. Fakat çoğumuz için astroloji bir eğlence ya da düzenli bir "
"hobi olabilir. Ama bu vay anını hayatımızın geri kalanı boyunca yanımızda "
"taşıyoruz ve her gece üstümüzdeki milyonlarca yıldızda gördüğümüz muhteşem "
"evren hakkında daha derin görünmek ve daha fazla bilgi edinmek için yollar "
"aramaya başlıyoruz."
#. module: website_blog
#: model:blog.post,subtitle:website_blog.blog_post_5
msgid "The beauty of astronomy is that anybody can do it."
msgstr "Astronominin güzelliği, herkesin bunu yapabilmesidir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"The best time to view the moon, obviously, is at night when there are few "
"clouds and the weather is accommodating for a long and lasting study. The "
"first quarter yields the greatest detail of study. And don’t be fooled but "
"the blotting out of part of the moon when it is not in full moon stage. The "
"phenomenon known as “earthshine” gives you the ability to see the darkened "
"part of the moon with some detail as well, even if the moon is only at "
"quarter or half display."
msgstr ""
"Ayı görmek için en iyi zaman, geceleri az bulutlu ve havanın uzun ve kalıcı "
"bir çalışma için uygun olduğu gecedir. İlk çeyrek çalışmanın en büyük "
"ayrıntısını verir. Ve kanmayın, dolunay aşamasında olmadığında ayın bir "
"kısmından lekelenme. “Dünya güneşi” olarak bilinen fenomen, ay sadece çeyrek"
" veya yarım ekranda olsa bile, ayın karanlık kısmını biraz ayrıntılı olarak "
"görebilmenizi sağlar."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid "The best time to view the moon."
msgstr "Ayı görmek için en iyi zaman."
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_post__post_date
msgid ""
"The blog post will be visible for your visitors as of this date on the "
"website if it is set as published."
msgstr ""
"Blog yazısı için yayınlanma tarihi ayarladıysanız, o tarihte websitenizdeki"
" ziyaretçileriniz için görünür olacaktır."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"The cliffs in this region are among the highest in the world and to see "
"water cascading from the high peaks is simply breathtaking. The short jaunt "
"from Maui with Maui helicopter tours is well worth seeing the beauty of this"
" natural environment."
msgstr ""
"Bu bölgedeki uçurumlar dünyanın en yüksekleri arasındadır ve yüksek "
"zirvelerden su basamaklarını görmek sadece nefes kesicidir. Maui helikopter "
"turları ile Maui'den kısa bir gezinti, bu doğal çevrenin güzelliğini görmeye"
" değer."
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_post__website_url
msgid "The full URL to access the document through the website."
msgstr "Web sitesi aracılığıyla belgeye erişmek için tam URL."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"The next thing we naturally want to get is a good telescope. You may have "
"seen a hobbyist who is well along in their study setting up those really "
"cool looking telescopes on a hill somewhere. That excites the amateur "
"astronomer in you because that must be the logical next step in the growth "
"of your hobby. But how to buy a good telescope can be downright confusing "
"and intimidating."
msgstr ""
"Doğal olarak almak istediğimiz bir sonraki şey iyi bir teleskop. Bir yerde "
"bir tepede gerçekten havalı görünen teleskoplar kurarken çalışmalarında iyi "
"bir hobi uzmanı görmüş olabilirsiniz. Bu amatör astronomu heyecanlandırıyor "
"çünkü hobinizin büyümesinde bir sonraki mantıklı adım bu olmalı. Ancak iyi "
"bir teleskop satın almak düpedüz kafa karıştırıcı ve göz korkutucu olabilir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"The site should offer a detailed analysis of leisure services within the "
"hotel – spa, pool, gym, sauna – as well as details of any other facilities "
"nearby such as golf courses. 7. Special Needs: the hotel directory site "
"should advise the visitor of each hotel’s special needs services and "
"accessibility policy. Whilst again this does not apply to every visitor, it "
"is absolutely vital to some."
msgstr ""
"Site, otel, spa, havuz, spor salonu, sauna gibi eğlence hizmetlerinin "
"ayrıntılı bir analizini ve ayrıca golf sahaları gibi yakındaki diğer "
"tesislerin ayrıntılarını sunmalıdır. 7. Özel İhtiyaçlar: otel dizin sitesi "
"ziyaretçiye her otelin özel ihtiyaç hizmetleri ve erişilebilirlik politikası"
" hakkında bilgi vermelidir. Bu yine her ziyaretçi için geçerli olmasa da, "
"bazıları için kesinlikle çok önemlidir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"The tripod or other accessory decisions will change significantly with a "
"telescope that will live on your deck versus one that you plan to take to "
"many remote locations."
msgstr ""
"Tripod veya diğer aksesuar kararları güvertede yaşayacak bir teleskopla "
"birçok uzak yere götürmeyi planladığınız teleskopla önemli ölçüde "
"değişecektir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"The view of this is truly breathtaking and is a sight not to be missed. It "
"is also highly educational with a chance to see a dormant volcano up close, "
"something that can not be seen every day. On the northern and southern sides"
" of the volcano, you will see an incredible different view however. These "
"sides are lush and green and you will be able to see some beautiful "
"waterfalls and gorgeous brush. Tropical rainforests abound on this side of "
"the island and it is something that is not easily accessible by any other "
"means than by air."
msgstr ""
"Bu görünümü gerçekten nefes kesici ve kaçırılmaması gereken bir manzara. "
"Ayrıca, her gün görülemeyen bir hareketsiz yanardağı yakından görme şansı "
"ile son derece eğiticidir. Yanardağın kuzey ve güney taraflarında inanılmaz "
"farklı bir manzara göreceksiniz. Bu taraflar gür ve yeşildir ve bazı güzel "
"şelaleler ve muhteşem fırçaları görebileceksiniz. Adanın bu tarafında tropik"
" yağmur ormanları bol miktarda bulunur ve hava yoluyla başka yollarla "
"kolayca erişilemeyen bir şeydir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"Then there’s the problem of the reviewer’s motivation. The more reviews you "
"read, the more you notice how they tend to cluster at the extremes of "
"opinion. On one end, you have angry reviewers with axes to grind; at the "
"other, you have delighted guests who lavish praise beyond belief. You’ll not"
" be surprised to learn that hotels sometimes post their own glowing reviews,"
" or that competitor’s line up for the chance to lambaste the competition "
"with bad reviews. It makes sense to consider what is really important to you"
" when selecting a hotel. You should then choose an online hotel directory "
"that gives up-to-date, independent, impartial information that really "
"matters."
msgstr ""
"Sonra gözden geçirenin motivasyonu sorunu var. Ne kadar çok yorum okursanız,"
" fikirlerin uç noktalarında nasıl kümelenme eğiliminde olduklarını daha "
"fazla fark edersiniz. Bir ucunda, öğütmek için eksenli öfkeli "
"eleştirmenleriniz var; öte yandan, inancın ötesinde övgü alan konukları "
"memnun ettiniz. Otellerin bazen kendi parlayan yorumlarını yayınladıklarını "
"veya yarışmacının rekabeti kötü eleştirilerle sıralama şansı bulduklarını "
"öğrenmek sizi şaşırtmayacaktır. Bir otel seçerken sizin için neyin önemli "
"olduğunu düşünmek mantıklıdır. Daha sonra, gerçekten önemli olan güncel, "
"bağımsız ve tarafsız bilgiler veren bir çevrimiçi otel dizini seçmelisiniz."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_6
msgid ""
"There are other considerations to factor into your final purchase decision."
msgstr ""
"Son satın alma kararınızı hesaba katmak için başka hususlar da vardır."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"There is something timeless about the cosmos. The fact that the planets and "
"the moon and the stars beyond them have been there for ages does something "
"to our sense of our place in the universe. In fact, many of the stars we "
"“see” with our naked eye are actually light that came from that star "
"hundreds of thousands of years ago. That light is just now reaching the "
"earth. So in a very real way, looking up is like time travel."
msgstr ""
"Evrende zamansız bir şey var. Gezegenlerin, ayın ve yıldızların ötesinde "
"uzun zamandır orada olmaları, evrendeki yerimiz hakkında bir şeyler yapıyor."
" Aslında, çıplak gözümüzle “gördüğümüz” yıldızların çoğu aslında yüz "
"binlerce yıl önce o yıldızdan gelen ışıktır. Bu ışık şimdi dünyaya ulaşıyor."
" Yani gerçek anlamda, bakmak zaman yolculuğu gibidir."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"These things really do matter and any decent hotel directory should give you"
" this sort of advice on bedrooms – not just the number of rooms which is the"
" usual option!"
msgstr ""
"Bu şeyler gerçekten önemli ve herhangi bir iyi otel dizini size yatak odası "
"bu tür tavsiye vermelidir - sadece olağan seçenek oda sayısı!"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "This box will not be visible to your visitors"
msgstr "Bu kutu ziyaretçileriniz tarafından görülmeyecek"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/options.js:0
msgid "This tag already exists"
msgstr "Bu bölüm için etiket zaten var"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/options.js:0
msgid "Tiny"
msgstr "Çok küçük"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__name
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_regular_cover
msgid "Title"
msgstr "Başlık"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Title Above Cover"
msgstr "Başlık Kapağın Üstünde"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Title Inside Cover"
msgstr "Başlık İç Kapak"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"To gaze at the moon with the naked eye, making yourself familiar with the "
"lunar map will help you pick out the seas, craters and other geographic "
"phenomenon that others have already mapped to make your study more "
"enjoyable. Moon maps can be had from any astronomy shop or online and they "
"are well worth the investment."
msgstr ""
"Ay'a çıplak gözle bakmak, kendinizi ay haritasına alıştırmak, başkalarının "
"çalışmanızı daha keyifli hale getirmek için haritaladığı denizleri, "
"kraterleri ve diğer coğrafi fenomenleri seçmenize yardımcı olacaktır. Ay "
"haritaları herhangi bir astronomi mağazasından veya çevrimiçi olabilir ve "
"yatırıma değer."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_4
msgid ""
"To get started in learning how to observe the stars much better, there are "
"some basic things we might need to look deeper, beyond just what we can see "
"with the naked eye and begin to study the stars as well as enjoy them. The "
"first thing you need isn’t equipment at all but literature. A good star map "
"will show you the major constellations, the location of the key stars we use"
" to navigate the sky and the planets that will appear larger than stars. And"
" if you add to that map some well done introductory materials into the hobby"
" of astronomy, you are well on your way."
msgstr ""
"Yıldızları daha iyi nasıl gözlemleyeceğimizi öğrenmeye başlamak için, çıplak"
" gözle görebildiğimiz ve yıldızları incelemenin yanı sıra tadını çıkarmaya "
"başladığımızın ötesinde, daha derin görünmemiz gerekebilecek bazı temel "
"şeyler vardır. İhtiyacınız olan ilk şey, edebiyattan başka bir ekipman "
"değildir. İyi bir yıldız haritası size büyük takımyıldızları, gökyüzünde "
"gezinmek için kullandığımız anahtar yıldızların yerini ve yıldızlardan daha "
"büyük görünecek gezegenleri gösterecektir. Ve bu haritaya, astronomi "
"hobisine iyi hazırlanmış tanıtım malzemeleri eklerseniz, yolunuza "
"çıkıyorsunuz."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"To kick it up a notch, a good pair of binoculars can do wonders for the "
"detail you will see on the lunar surface. For best results, get a good wide "
"field in the binocular settings so you can take in the lunar landscape in "
"all its beauty. And because it is almost impossible to hold the binoculars "
"still for the length of time you will want to gaze at this magnificent body "
"in space, you may want to add to your equipment arsenal a good tripod that "
"you can affix the binoculars to so you can study the moon in comfort and "
"with a stable viewing platform."
msgstr ""
"Bir çentik atmak için, iyi bir dürbün çifti, ay yüzeyinde göreceğiniz "
"ayrıntı için harikalar yaratabilir. En iyi sonuçlar için, binoküler ortamda "
"iyi bir geniş alan elde edin, böylece ay manzarasını tüm güzelliğinde "
"alabilirsiniz. Ve dürbünü uzayda bu muhteşem bedene bakmak isteyeceğiniz "
"süre boyunca tutmak neredeyse imkansız olduğu için, ekipman cephaneliğinize "
"dürbünü takabileceğiniz iyi bir tripod eklemek isteyebilirsiniz. Ayı rahatça"
" ve istikrarlı bir görüntüleme platformu ile inceleyin."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_7
msgid ""
"To take it to a natural next level, you may want to take advantage of "
"partnerships with other astronomers or by visiting one of the truly great "
"telescopes that have been set up by professionals who have invested in "
"better techniques for eliminating atmospheric interference to see the moon "
"even better. The internet can give you access to the Hubble and many of the "
"huge telescopes that are pointed at the moon all the time. Further, many "
"astronomy clubs are working on ways to combine multiple telescopes, "
"carefully synchronized with computers for the best view of the lunar "
"landscape."
msgstr ""
"Doğal bir sonraki seviyeye götürmek için, diğer gökbilimcilerle "
"ortaklıklardan yararlanmak veya ayı görmek için atmosferik paraziti ortadan "
"kaldırmak için daha iyi tekniklere yatırım yapan profesyoneller tarafından "
"kurulmuş gerçekten harika teleskoplardan birini ziyaret etmek "
"isteyebilirsiniz. daha iyi. İnternet, Hubble'a ve her zaman aya işaret eden "
"dev teleskopların çoğuna erişmenizi sağlayabilir. Ayrıca, birçok astronomi "
"kulübü, ay manzarasının en iyi görünümü için bilgisayarlar ile dikkatlice "
"senkronize edilen birden fazla teleskopu birleştirmenin yolları üzerinde "
"çalışıyor."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.snippet_options
msgid "Top Banner"
msgstr "Üst Afiş"
#. module: website_blog
#: model:blog.blog,name:website_blog.blog_blog_1
msgid "Travel"
msgstr "Seyahat"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_share_links_display
msgid "Twitter"
msgstr "Twitter"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "Unpublished ("
msgstr "Yayınlanmadı ("
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.post_heading
msgid "Untitled Post"
msgstr "Başlıksız Gönderimler"
#. module: website_blog
#. odoo-javascript
#: code:addons/website_blog/static/src/js/tours/website_blog.js:0
msgid "Use this icon to preview your blog post on <b>mobile devices</b>."
msgstr ""
"Blog yayınınızı <b>mobil cihazlarda</b> önizlemek için bu simgeyi "
"kullanın."
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_tag_form
msgid "Used in:"
msgstr "Aşağıdakilerde kullanılır:"
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "Viewpoints"
msgstr "Bakış açıları"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.post_info
msgid "Views"
msgstr "Görünümler"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.index
msgid "Visible in all blogs' pages"
msgstr "Tüm blogların sayfalarında görünür"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_published
msgid "Visible on current website"
msgstr "Mevcut web sitesinde görülebilir"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_content
msgid "WRITE HERE OR DRAG BUILDING BLOCKS"
msgstr ""
#. module: website_blog
#: model:ir.model,name:website_blog.model_website
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__website_id
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_id
msgid "Website"
msgstr "Websitesi"
#. module: website_blog
#: model:ir.actions.act_url,name:website_blog.action_open_website
msgid "Website Blogs"
msgstr "Bloglar"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__website_message_ids
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_message_ids
msgid "Website Messages"
msgstr "Websitesi Mesajları"
#. module: website_blog
#: model:ir.model,name:website_blog.model_website_snippet_filter
msgid "Website Snippet Filter"
msgstr "Web Sitesi Snippet Filtresi"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_url
msgid "Website URL"
msgstr "Web Sitesi URL Adresi"
#. module: website_blog
#: model:ir.model.fields,help:website_blog.field_blog_blog__website_message_ids
#: model:ir.model.fields,help:website_blog.field_blog_post__website_message_ids
msgid "Website communication history"
msgstr "Websitesi iletişim geçmişi"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__website_meta_description
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_meta_description
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__website_meta_description
msgid "Website meta description"
msgstr "Web sitesi meta açıklaması"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__website_meta_keywords
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_meta_keywords
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__website_meta_keywords
msgid "Website meta keywords"
msgstr "Web Sitesi meta anahtar kelimeleri"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__website_meta_title
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_meta_title
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__website_meta_title
msgid "Website meta title"
msgstr "Web sitesi meta başlık"
#. module: website_blog
#: model:ir.model.fields,field_description:website_blog.field_blog_blog__website_meta_og_img
#: model:ir.model.fields,field_description:website_blog.field_blog_post__website_meta_og_img
#: model:ir.model.fields,field_description:website_blog.field_blog_tag__website_meta_og_img
msgid "Website opengraph image"
msgstr "Web sitesi açılış grafiği görüntüsü"
#. module: website_blog
#: model:blog.post,name:website_blog.blog_post_5
msgid "What If They Let You Run The Hubble"
msgstr "Hubble'ı Çalıştırmanıza İzin Verirlerse"
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_5
msgid ""
"While anyone can look up and fall in love with the stars at any time, the "
"fun of astronomy is learning how to become more and more skilled and "
"equipped in star gazing that you see and understand more and more each time "
"you look up. Here are some steps you can take to make the moments you can "
"devote to your hobby of astronomy much more enjoyable."
msgstr ""
"Herkes herhangi bir zamanda yıldızlara bakıp aşık olabilirken, astronomi "
"eğlencesi, her baktığınızda daha fazla gördüğünüz ve anladığınız yıldız "
"bakışında nasıl daha yetenekli ve donanımlı hale geleceğini öğrenmektir. "
"Astronomi hobinize ayırabileceğiniz anları çok daha keyifli hale getirmek "
"için atabileceğiniz bazı adımlar."
#. module: website_blog
#. odoo-python
#: code:addons/website_blog/models/website_snippet_filter.py:0
msgid "With a View"
msgstr "Manzaralı"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.sidebar_blog_index
msgid "Write a small text here to describe your blog or company."
msgstr ""
"Blogunuzu veya şirketinizi tanımlamak için buraya küçük bir metin yazın."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_3
msgid ""
"You should always carefully consider the type of facilities you need from "
"your bedroom and find the hotel that has those you consider important. The "
"hotel directory website should elaborate on matters such as: bed size, "
"Internet Access (its cost, whether there is WIFI or wired broadband "
"connection), Complimentary amenities, views from the room and luxury "
"offerings like a Pillow menu or Bath menu, choice of smoking or non smoking "
"rooms etc."
msgstr ""
"Yatak odanızdan ihtiyacınız olan tesis türlerini her zaman dikkatle "
"düşünmeli ve önemli olduğunu düşündüğünüz oteli bulmalısınız. Otel dizini "
"web sitesi, yatak boyutu, İnternet Erişimi (maliyeti, WIFI veya kablolu "
"geniş bant bağlantısı olsun,), Ücretsiz olanaklar, oda manzarası ve Yastık "
"menüsü veya Banyo menüsü gibi lüks teklifler, sigara içilen veya içilmeyen "
"odalar vb."
#. module: website_blog
#: model_terms:blog.post,content:website_blog.blog_post_2
msgid ""
"You will see all the beauty that Maui has to offer and can have a great time"
" for the entire family. Tours are not too expensive and last from forty five"
" minutes to over an hour. You can see places that are typically inaccessible"
" with Maui helicopter tours. Places that are not available by foot or "
"vehicle can be seen by air. Breathtaking sights await those who are up for "
"some fun Maui helicopter tours. If you will be staying on the island for a "
"considerable amount of time, you may want to think about doing multiple Maui"
" helicopter tours."
msgstr ""
"Maui'nin sunduğu tüm güzelliği göreceksiniz ve tüm aile için harika zaman "
"geçirebilirsiniz. Turlar çok pahalı değil ve kırk beş dakikadan bir saatten "
"fazla sürüyor. Maui helikopter turlarıyla tipik olarak erişilemeyen yerleri "
"görebilirsiniz. Yürüyerek veya araçla ulaşılamayan yerler hava ile "
"görülebilir. Bazı eğlenceli Maui helikopter turlarına hazır olanları nefes "
"kesici manzaralar bekliyor. Adada önemli bir süre kalacaksanız, birden fazla"
" Maui helikopter turu yapmayı düşünmek isteyebilirsiniz."
#. module: website_blog
#: model:blog.tag,name:website_blog.blog_tag_2
msgid "adventure"
msgstr "macera"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_template_new_post
msgid "blog. Click here to access the blog :"
msgstr "blog. Bloga erişmek için buraya tıklayın:"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.post_breadcrumbs
msgid "breadcrumb"
msgstr "içerik haritası"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_regular_cover
#: model_terms:ir.ui.view,arch_db:website_blog.post_heading
msgid "by"
msgstr "yazan"
#. module: website_blog
#: model:blog.tag,name:website_blog.blog_tag_5
msgid "discovery"
msgstr "keşif"
#. module: website_blog
#: model:blog.tag,name:website_blog.blog_tag_3
msgid "guides"
msgstr "kılavuzlar"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_template_new_post
msgid "has been published on the"
msgstr "tarihinde yayınlandı"
#. module: website_blog
#: model:blog.tag,name:website_blog.blog_tag_1
msgid "hotels"
msgstr "oteller"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.blog_post_content
msgid "in"
msgstr "inç"
#. module: website_blog
#: model:blog.tag,name:website_blog.blog_tag_4
msgid "telescopes"
msgstr "teleskoplar"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_comment
msgid "to leave a comment"
msgstr "to leave a comment"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.posts_loop
msgid "unpublished"
msgstr "yayında değil"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_regular_cover
msgid ""
"|\n"
" <i class=\"fa fa-comment text-muted me-1\"/>"
msgstr ""
"|\n"
" <i class=\"fa fa-comment text-muted me-1\"/>"
#. module: website_blog
#: model_terms:ir.ui.view,arch_db:website_blog.opt_blog_post_regular_cover
msgid "| No comments yet"
msgstr "| henüz yorum yok"
|