Files @ r13482:56711f143646
Branch filter:

Location: cpp/openttd-patchpack/source/src/lang/unfinished/urdu.txt

frosch
(svn r18011) -Feature(ette): [NewGRF] CB 36 for roadvehicle property 09 'running cost factor'.
   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
##name Urdu
##ownname Urdu
##isocode ur_PK
##plural 0
##textdir rtl
##digitsep ٬
##digitsepcur ٬
##decimalsep ٫
##winlangid 0x0420
##grflangid 0x5c
##gender m f


# $Id$

# This file is part of OpenTTD.
# OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
# OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.


##id 0x0000
STR_NULL                                                        :
STR_EMPTY                                                       :
STR_JUST_NOTHING                                                :کچھ نہیں

# Cargo related strings
# Plural cargo name
STR_CARGO_PLURAL_NOTHING                                        :
STR_CARGO_PLURAL_PASSENGERS                                     :مسافر
STR_CARGO_PLURAL_COAL                                           :کویلہ
STR_CARGO_PLURAL_MAIL                                           :ڈاک
STR_CARGO_PLURAL_OIL                                            :تیل
STR_CARGO_PLURAL_LIVESTOCK                                      :مویشی
STR_CARGO_PLURAL_GOODS                                          :سامان تجارت
STR_CARGO_PLURAL_GRAIN                                          :گیہوں
STR_CARGO_PLURAL_WOOD                                           :لکڑی
STR_CARGO_PLURAL_IRON_ORE                                       :خام لوہا
STR_CARGO_PLURAL_STEEL                                          :فولاد
STR_CARGO_PLURAL_VALUABLES                                      :قیمتی اشیا
STR_CARGO_PLURAL_COPPER_ORE                                     :خام تانبا
STR_CARGO_PLURAL_MAIZE                                          :مکی
STR_CARGO_PLURAL_FRUIT                                          :پھل
STR_CARGO_PLURAL_DIAMONDS                                       :ہیرے
STR_CARGO_PLURAL_FOOD                                           :کھانا
STR_CARGO_PLURAL_PAPER                                          :کاغذ
STR_CARGO_PLURAL_GOLD                                           :سونا
STR_CARGO_PLURAL_WATER                                          :پانی
STR_CARGO_PLURAL_WHEAT                                          :گندم
STR_CARGO_PLURAL_RUBBER                                         :ربر
STR_CARGO_PLURAL_SUGAR                                          :چینی
STR_CARGO_PLURAL_TOYS                                           :کھلونے
STR_CARGO_PLURAL_CANDY                                          :مٹھایاں
STR_CARGO_PLURAL_COLA                                           :کولا
STR_CARGO_PLURAL_COTTON_CANDY                                   :لچھا
STR_CARGO_PLURAL_BUBBLES                                        :بلبلے
STR_CARGO_PLURAL_TOFFEE                                         :ٹافی
STR_CARGO_PLURAL_BATTERIES                                      :بیٹریاں
STR_CARGO_PLURAL_PLASTIC                                        :پلاسٹک
STR_CARGO_PLURAL_FIZZY_DRINKS                                   :گیسی مشروب

# Singular cargo name
STR_CARGO_SINGULAR_NOTHING                                      :
STR_CARGO_SINGULAR_PASSENGER                                    :مسافر
STR_CARGO_SINGULAR_COAL                                         :کویلہ
STR_CARGO_SINGULAR_MAIL                                         :ڈاک
STR_CARGO_SINGULAR_OIL                                          :تیل
STR_CARGO_SINGULAR_LIVESTOCK                                    :مویشی
STR_CARGO_SINGULAR_GOODS                                        :سامان
STR_CARGO_SINGULAR_GRAIN                                        :گیہوں
STR_CARGO_SINGULAR_WOOD                                         :لکڑی
STR_CARGO_SINGULAR_IRON_ORE                                     :خام لوہا
STR_CARGO_SINGULAR_STEEL                                        :فولاد
STR_CARGO_SINGULAR_VALUABLES                                    :نوادرات
STR_CARGO_SINGULAR_COPPER_ORE                                   :خام تانبا
STR_CARGO_SINGULAR_MAIZE                                        :مکیی
STR_CARGO_SINGULAR_FRUIT                                        :بھل
STR_CARGO_SINGULAR_DIAMOND                                      :ہیرا
STR_CARGO_SINGULAR_FOOD                                         :کھانا
STR_CARGO_SINGULAR_PAPER                                        :کاغذ
STR_CARGO_SINGULAR_GOLD                                         :سونا
STR_CARGO_SINGULAR_WATER                                        :پانی
STR_CARGO_SINGULAR_WHEAT                                        :گندم
STR_CARGO_SINGULAR_RUBBER                                       :ربر
STR_CARGO_SINGULAR_SUGAR                                        :چینی
STR_CARGO_SINGULAR_TOY                                          :کھلونا
STR_CARGO_SINGULAR_CANDY                                        :مٹھایی
STR_CARGO_SINGULAR_COLA                                         :کولا
STR_CARGO_SINGULAR_COTTON_CANDY                                 :لچھا
STR_CARGO_SINGULAR_BUBBLE                                       :بلبلہ
STR_CARGO_SINGULAR_TOFFEE                                       :ٹافی
STR_CARGO_SINGULAR_BATTERY                                      :بیٹری
STR_CARGO_SINGULAR_PLASTIC                                      :پلاسٹک
STR_CARGO_SINGULAR_FIZZY_DRINK                                  :گیسی مشروب

# Quantity of cargo
STR_QUANTITY_NOTHING                                            :
STR_QUANTITY_PASSENGERS                                         :{COMMA} مسافر{P "" s}
STR_QUANTITY_COAL                                               :{WEIGHT} کویلہ

# Two letter abbreviation of cargo name

# 'Mode' of transport for cargoes

# Colours, do not shuffle
STR_COLOUR_DARK_BLUE                                            :گہرا نیلا
STR_COLOUR_PALE_GREEN                                           :ہلکا سبز
STR_COLOUR_PINK                                                 :گلابی
STR_COLOUR_YELLOW                                               :پیلا
STR_COLOUR_RED                                                  :سرخ
STR_COLOUR_LIGHT_BLUE                                           :ہلکا نیلا
STR_COLOUR_GREEN                                                :سبز
STR_COLOUR_DARK_GREEN                                           :گہرا سبز
STR_COLOUR_BLUE                                                 :نیلا
STR_COLOUR_PURPLE                                               :جامنی
STR_COLOUR_ORANGE                                               :نارنجی
STR_COLOUR_BROWN                                                :بھورا
STR_COLOUR_GREY                                                 :سلیٹی
STR_COLOUR_WHITE                                                :سفید

# Units used in OpenTTD







# Common window strings
STR_TOOLTIP_SORT_ORDER                                          :{BLACK} (ترتیب کا طریقہ منتخب کریں (کم ہوتا/بڑھتا
STR_TOOLTIP_SORT_CRITERIAP                                      :{BLACK}ترتیب کا طریقہ منتخب کریں
STR_BUTTON_SORT_BY                                              :{BLACK}سے ترتیب دو
STR_BUTTON_LOCATION                                             :{BLACK}جگہ

STR_TOOLTIP_CLOSE_WINDOW                                        :{BLACK}کھڑکی بند کرو
STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS                              :{BLACK}کھڑکی کا نام - کھڑکی کو ہلانے کیلیے اسے پکڑ کر ہلاو
STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC                              :{BLACK}زمین کے ایک مربے پر عمارتیں وغیرہ گراو

# Query window

# On screen keyboard window

# Measurement tooltip


# These are used in buttons
STR_SORT_BY_CAPTION_POPULATION                                  :{BLACK}آبادی
STR_SORT_BY_CAPTION_NAME                                        :{BLACK}نام
STR_SORT_BY_CAPTION_DATE                                        :{BLACK}تاریخ
# These are used in dropdowns
STR_SORT_BY_PRODUCTION                                          :پیداوار
STR_SORT_BY_TYPE                                                :طرز
STR_SORT_BY_TRANSPORTED                                         :منتقل شدہ
STR_SORT_BY_NUMBER                                              :تعداد
STR_SORT_BY_PROFIT_LAST_YEAR                                    :پچھلے سال کا منافع
STR_SORT_BY_CARGO_CAPACITY                                      :سامان کی گنجایش

# Tooltips for the main toolbar
STR_TOOLBAR_TOOLTIP_DISPLAY_COMPANY_FINANCES                    :{BLACK}کمپنی کی مالیاتی معلومات دکھاو
STR_TOOLBAR_TOOLTIP_DISPLAY_COMPANY_GENERAL                     :{BLACK}کمپنی کی عام معلومات دکھاو
STR_TOOLBAR_TOOLTIP_DISPLAY_LIST_OF_COMPANY_TRAINS              :{BLACK}کمپنی کی ریل گاڑیوں کی فہرست دکھاو۔ Ctrl+Click سے گروپ یا ٹرینوں کی فہرست کھلتی یا بند ہوتی ہے
STR_TOOLBAR_TOOLTIP_DISPLAY_LIST_OF_COMPANY_ROAD_VEHICLES       :{BLACK}کمپنی کی سڑک کی سواریوں کی فہرست دکھاو۔ Ctrl+Click سے گروپ یا گاڑیوں کی فہرست کھلتی یا بند ہوتی ہے
STR_TOOLBAR_TOOLTIP_DISPLAY_LIST_OF_COMPANY_SHIPS               :{BLACK}کمپنی کی کشتیوں کی فہرست دکھاو۔ Ctrl+Click سے گروپ یا کشتیوں کی فہرست کھلتی یا بند ہوتی ہے
STR_TOOLBAR_TOOLTIP_DISPLAY_LIST_OF_COMPANY_AIRCRAFT            :{BLACK}کمپنی کے ہوای جہازوں کی فہرست دکھاو۔ Ctrl+Click سے گروپ یا جہازوں کی فہرست کھلتی یا بند ہوتی ہے
STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_IN                            :{BLACK}بڑا کر کے دکھاو
STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_OUT                           :{BLACK}چھوٹا کر کے دکھاو
STR_TOOLBAR_TOOLTIP_BUILD_RAILROAD_TRACK                        :{BLACK}ریل کی پٹری بچھاو
STR_TOOLBAR_TOOLTIP_BUILD_ROADS                                 :{BLACK}سڑکیں بناو
STR_TOOLBAR_TOOLTIP_BUILD_SHIP_DOCKS                            :{BLACK}بندرگاہیں بناو
STR_TOOLBAR_TOOLTIP_BUILD_AIRPORTS                              :{BLACK}ہوای اڈے بناو
STR_TOOLBAR_TOOLTIP_LAND_BLOCK_INFORMATION                      :{BLACK}زمینی رقبہ کی معلومات

# Extra tooltips for the scenario editor toolbar
STR_SCENEDIT_TOOLBAR_TOOLTIP_MOVE_THE_STARTING_DATE_BACKWARD    :{BLACK}شروع کرنے کی تاریخ کو ایک سال پیچھے کرو
STR_SCENEDIT_TOOLBAR_TOOLTIP_MOVE_THE_STARTING_DATE_FORWARD     :{BLACK}شروع کرنے کی تاریخ کو ایک سال آگے کرو

############ range for SE file menu starts
STR_SCENEDIT_FILE_MENU_LOAD_HEIGHTMAP                           :اونچائی کا نقشہ دکھائو
STR_SCENEDIT_FILE_MENU_SEPARATOR                                :
STR_SCENEDIT_FILE_MENU_QUIT                                     :باہر نکلو
############ range for SE file menu starts

############ range for settings menu starts
STR_SETTINGS_MENU_TOWN_NAMES_DISPLAYED                          :{SETX 12}آبادیوں کے نام دکھائے جائیں
STR_SETTINGS_MENU_STATION_NAMES_DISPLAYED                       :{SETX 12}اڈوں کے نام دکھائے جائیں
STR_SETTINGS_MENU_SIGNS_DISPLAYED                               :{SETX 12}اشارے دکھائے جائیں
############ range ends here

############ range for file menu starts
STR_FILE_MENU_SAVE_GAME                                         :کھیل محفوظ کرو
STR_FILE_MENU_LOAD_GAME                                         :کھیل دوبارہ چڑھاو
STR_FILE_MENU_QUIT_GAME                                         :کھیل چھوڑ دو
STR_FILE_MENU_EXIT                                              :باہر نکلو
############ range ends here

############ range for map menu starts
############ range for town menu starts, yet the town directory is shown in the map menu in the scenario editor
############ both ranges ends here

############ range for subsidies menu starts
############ range ends here

############ range for graph menu starts
STR_GRAPH_MENU_CARGO_PAYMENT_RATES                              :سامان کی ادایگی کا تناسب
############ range ends here

############ range for company league menu starts
############ range ends here

############ range for industry menu starts
############ range ends here

############ range for railway construction menu starts
############ range ends here

############ range for road construction menu starts
############ range ends here

############ range for waterways construction menu starts
############ range ends here

############ range for airport construction menu starts
############ range ends here

############ range for landscaping menu starts
############ range ends here

############ range for music menu starts
############ range ends here

############ range for message menu starts
############ range ends here

############ range for about menu starts
############ range ends here

############ range for days starts (also used for the place in the highscore window)
############ range for days ends

############ range for months starts

############ range for months ends

# Graph window




# Graph key window

# Company league window

# Performance detail window
############ Those following lines need to be in this order!!
############ End of order list

# Music window

# Playlist window

# Highscore window

# Smallmap window

STR_SMALLMAP_TYPE_VEHICLES                                      :سواریاں
STR_SMALLMAP_TYPE_INDUSTRIES                                    :صنعتیں
STR_SMALLMAP_TYPE_ROUTES                                        :راستے
STR_SMALLMAP_TYPE_VEGETATION                                    :سبزہ
STR_SMALLMAP_TYPE_OWNERS                                        :مالکین

STR_SMALLMAP_LEGENDA_ROADS                                      :{TINYFONT}{BLACK}سڑکیں
STR_SMALLMAP_LEGENDA_STATIONS_AIRPORTS_DOCKS                    :{TINYFONT}{BLACK}اڈے/ہوایی اڈے/بندرگاہیں
STR_SMALLMAP_LEGENDA_BUILDINGS_INDUSTRIES                       :{TINYFONT}{BLACK}عمارتیں/صنعتیں
STR_SMALLMAP_LEGENDA_VEHICLES                                   :{TINYFONT}{BLACK}سواریاں
STR_SMALLMAP_LEGENDA_100M                                       :{TINYFONT}{BLACK}۱۰۰ میٹر
STR_SMALLMAP_LEGENDA_200M                                       :{TINYFONT}{BLACK}۲۰۰ میٹر
STR_SMALLMAP_LEGENDA_300M                                       :{TINYFONT}{BLACK}۳۰۰میٹر
STR_SMALLMAP_LEGENDA_400M                                       :{TINYFONT}{BLACK}۴۰۰ میٹر
STR_SMALLMAP_LEGENDA_500M                                       :{TINYFONT}{BLACK}۵۰۰ میٹر
STR_SMALLMAP_LEGENDA_TRAINS                                     :{TINYFONT}{BLACK}ریل گاڑیاں
STR_SMALLMAP_LEGENDA_ROAD_VEHICLES                              :{TINYFONT}{BLACK}سڑک کی گاڑیاں
STR_SMALLMAP_LEGENDA_SHIPS                                      :{TINYFONT}{BLACK}کشتیاں
STR_SMALLMAP_LEGENDA_AIRCRAFT                                   :{TINYFONT}{BLACK}ہوایی جہاز
STR_SMALLMAP_LEGENDA_TRANSPORT_ROUTES                           :{TINYFONT}{BLACK}مواصلاتی راستے
STR_SMALLMAP_LEGENDA_FOREST                                     :{TINYFONT}{BLACK}جنگل


# Status bar messages
STR_STATUSBAR_TOOLTIP_SHOW_LAST_NEWS                            :{BLACK}آخری پیغام یا خبر دکھائو
STR_STATUSBAR_COMPANY_NAME                                      :{SILVER}- -  {COMPANY}  - -

# News message history
STR_MESSAGE_NEWS_FORMAT                                         :{STRING}  -  {STRING}

# Message settings window
STR_NEWS_MESSAGES_OFF                                           :بند
STR_NEWS_MESSAGES_SUMMARY                                       :خلاصہ
STR_NEWS_MESSAGES_FULL                                          :مکمل











# Start of order review system.
# DON'T ADD OR REMOVE LINES HERE
# end of order system







# Extra view window

# Game options window

############ start of currency region
############ end of currency region


############ start of measuring units region
############ end of measuring units region



############ start of townname region
############ end of townname region










# Custom currency window






# Difficulty level window

############ range for difficulty levels starts
############ range for difficulty levels ends


############ range for difficulty settings starts
############ range for difficulty settings ends












# Advanced settings window





















# Intro window

STR_INTRO_PLAY_HEIGHTMAP                                        :{BLACK}اونچائی کے نقشے کو کھیلو


STR_INTRO_TOOLTIP_PLAY_HEIGHTMAP                                :{BLACK}ایک نیا کھیل شروع کرو، اونچائی کے نقشے کو زمین بنا کر



# Quit window
STR_QUIT_CAPTION                                                :{WHITE}باہر نکلو
STR_QUIT_YES                                                    :{BLACK}ہاں
STR_QUIT_NO                                                     :{BLACK}نہیں

# Supported OSes

# Abandon game
STR_ABANDON_GAME_CAPTION                                        :{WHITE}کھیل چھوڑ دو
STR_ABANDON_GAME_QUERY                                          :{YELLOW}کیا آپ کو یقین ہے کہ آپ اس کھیل کو چھوڑنا چاہ رہے ہیں؟

# Cheat window

# Livery window



# Face selection window


# Network server list







# Start new multiplayer server





# Network game languages
############ Leave those lines in this order!!
############ End of leave-in-this-order

# Network game lobby





# Network connecting window

############ Leave those lines in this order!!

############ End of leave-in-this-order



# Network company list added strings

# Network client list



# Network set password

# Network company info join/password

# Network chat


# Network messages

############ Leave those lines in this order!!
############ End of leave-in-this-order

# Network related errors
############ Leave those lines in this order!!
############ End of leave-in-this-order

# Content downloading window

# Order of these is important!

# Content downloading progress window

# Content downloading error messages

# Transparency settings window

# Base for station construction window(s)
STR_STATION_BUILD_ACCEPTS_CARGO                                 :{BLACK}منظور کرتا ہے: {GOLD}
STR_STATION_BUILD_SUPPLIES_CARGO                                :{BLACK}فراہم کرتا ہے: {GOLD}

# Join station window


# Rail construction toolbar


# Rail depot construction window

# Rail waypoint construction window

# Rail station construction window



# Signal window

# Bridge selection window


# Road construction toolbar

# Road depot construction window

# Road vehicle station construction window

# Waterways toolbar (last two for SE only)
STR_WATERWAYS_TOOLBAR_CREATE_RIVER_TOOLTIP                      :{BLACK}دریا رکھو.

# Ship depot construction window

# Dock construction window

# Airport toolbar

# Airport construction window




# Landscaping toolbar
STR_LANDSCAPING_TOOLTIP_LOWER_A_CORNER_OF_LAND                  :{BLACK}زمین کا ایک کنارہ نیچے کرو
STR_LANDSCAPING_TOOLTIP_RAISE_A_CORNER_OF_LAND                  :{BLACK}زمین کا ایک کنارہ اونچا کرو

# Tree planting window (last two for SE only)

# Land generation window (SE)


# Town generation window (SE)

STR_FOUND_TOWN_INITIAL_SIZE_TITLE                               :{YELLOW}شہر کا حجم:
STR_FOUND_TOWN_INITIAL_SIZE_SMALL_BUTTON                        :{G=m}{BLACK}چھوٹا
STR_FOUND_TOWN_INITIAL_SIZE_MEDIUM_BUTTON                       :{G=m}{BLACK}درمیانہ
STR_FOUND_TOWN_INITIAL_SIZE_LARGE_BUTTON                        :{G=m}{BLACK}بڑا
STR_FOUND_TOWN_SIZE_RANDOM                                      :{G=m}{BLACK}کوئی سا
STR_FOUND_TOWN_INITIAL_SIZE_TOOLTIP                             :{BLACK}شہر کا حجم منتخب کرو
STR_FOUND_TOWN_CITY                                             :{BLACK}شہر

STR_FOUND_TOWN_ROAD_LAYOUT                                      :{YELLOW}شہر کی سڑکوں کا پھیلائو:
STR_FOUND_TOWN_SELECT_TOWN_ROAD_LAYOUT                          :{BLACK}اس شہر کیلئے سڑکوں کا بھیلائو منتخب کرو
STR_FOUND_TOWN_SELECT_LAYOUT_ORIGINAL                           :{BLACK}اصلی
STR_FOUND_TOWN_SELECT_LAYOUT_BETTER_ROADS                       :{BLACK}بہتر سڑکیں
STR_FOUND_TOWN_SELECT_LAYOUT_RANDOM                             :{G=f}{BLACK}کوئٰ سی

# Fund new industry window

# Land area window

# Description of land area of different tiles



# Houses come directly from their building names




# Industries come directly from their industry names






# About OpenTTD window
STR_ABOUT_OPENTTD                                               :{WHITE}اوپن ٹی ٹی ڈی کے متعلق

# Save/load game/scenario


# World generation

# Strings for map borders at game generation



# SE Map generation


# Map generation progress

# NewGRF settings






# NewGRF add window

# NewGRF (self) generated warnings/errors

# NewGRF related 'general' warnings



# NewGRF 'it's broken' warnings


# Sign list window

# Sign window


# Town directory window

# Town view window

STR_TOWN_VIEW_DELETE_BUTTON                                     :{BLACK}مٹائو
STR_TOWN_VIEW_DELETE_TOOLTIP                                    :{BLACK}اس شہر کو پورا مٹا دو


# Town local authority window



# Subsidies window

# Station list window
STR_STATION_LIST_SELECT_ALL_FACILITIES                          :{BLACK}تمام سہولتوں کا انتخاب کرو
STR_STATION_LIST_SELECT_ALL_TYPES                               :{BLACK}تمام قسم کا سامان کا انتخاب کرو  (بشمول غیر منتظر سامان کے)
STR_STATION_LIST_NO_WAITING_CARGO                               :{BLACK}کسی قسم کا کویی سامان انتظار نہیں کر رہا ہے

# Station view window
STR_STATION_VIEW_WAITING_TITLE                                  :{BLACK}منتظر: {WHITE}{STRING}
STR_STATION_VIEW_WAITING_CARGO                                  :{WHITE}{CARGO}
STR_STATION_VIEW_EN_ROUTE_FROM                                  :{YELLOW}({SHORTCARGO} سے براستہ ہے {STATION})

STR_STATION_VIEW_ACCEPTS_CARGO                                  :{BLACK}منظور کرتا ہے: {WHITE}


############ range for rating starts
############ range for rating ends




# Waypoint/buoy view window


# Finances window

# Company view







# Industry directory

# Industry view

############ range for requires starts
############ range for requires ends

############ range for produces starts
############ range for produces ends


# Vehicle lists



STR_VEHICLE_LIST_AVAILABLE_TRAINS                               :{BLACK}دستیاب ریل گاڑیاں
STR_VEHICLE_LIST_AVAILABLE_ROAD_VEHICLES                        :{BLACK}دستیاب گاڑیاں
STR_VEHICLE_LIST_AVAILABLE_SHIPS                                :{BLACK}دستیاب کشتیاں
STR_VEHICLE_LIST_AVAILABLE_AIRCRAFT                             :{BLACK}دستیاب ہوایی جہاز
STR_VEHICLE_LIST_AVAILABLE_ENGINES_TOOLTIP                      :{BLACK}اس قسم کی گاڑیوں کےلیے دستیاب انجنوں کی فہرست دیکھو

STR_VEHICLE_LIST_MANAGE_LIST                                    :{BLACK}فہرست کا انتظام کرو




# Group window





# Build vehicle window









# Depot window
















# Engine preview window


# Autoreplace window






# Vehicle view










# Messages in the start stop button in the vehicle view





# Vehicle details


# The next two need to stay in this order







# Extra buttons for train details windows





# Vehicle refit




# Order view



# Order bottom buttons












# String parts to build the order string









# Time table window









# AI debug window


# AI configuration window


# Available AIs window



# AI Parameters

# Vehicle loading indicators

# Income 'floats'

# Saveload messages

# Map generation messages




# Screenshot related messages

# Error message titles

# Generic construction errors
STR_ERROR_OFF_EDGE_OF_MAP                                       :{WHITE}نقشے کے کنارے سے باہر
STR_ERROR_TOO_CLOSE_TO_EDGE_OF_MAP                              :{WHITE}نقشے کے کنارے سے زیادہ قریب
STR_ERROR_NOT_ENOUGH_CASH_REQUIRES_CURRENCY                     :{WHITE}ناکافی پیسہ - {CURRENCY} مزید چاہیے
STR_ERROR_FLAT_LAND_REQUIRED                                    :{WHITE}ہموار زمین چاہیے
STR_ERROR_CAN_T_DO_THIS                                         :{WHITE}یہ نہیں کر سکتا۔۔۔
STR_ERROR_CAN_T_CLEAR_THIS_AREA                                 :{WHITE}یہ جگہ صاف نہیں کر سکتا۔۔۔

# Local authority errors

# Leveling errors

# Company related errors


# Town related errors

# Industry related errors
STR_ERROR_CAN_ONLY_BE_BUILT_IN_TOWNS_WITH_POPULATION_OF_1200    :{G=m}{WHITE}...صرف ان شہروں میں بن سکتا ہے جن کی آبادی ۱۲۰۰ سے زیادہ ہے

# Station construction related errors


# Station destruction related errors


# Waypoint related errors



# Depot related errors





# Autoreplace related errors

# Rail construction errors


# Road construction errors

# Waterway construction errors

# Tree related errors

# Bridge related errors
STR_ERROR_ENDS_OF_BRIDGE_MUST_BOTH                              :{WHITE}...پل کے دونوں کنارے زمین پر ہونے چاہییں

# Tunnel related errors

# Unmovable related errors

# Group related errors

# Generic vehicle errors









STR_ERROR_TOO_MANY_VEHICLES_IN_GAME                             :{WHITE}کھیل میں بہت زیادہ سواریاں


# Specific vehicle errors



# Order related errors


# Timetable related errors

# Sign related errors

##id 0x2000
# Town building names

##id 0x4800
# industry names

############ WARNING, using range 0x6000 for strings that are stored in the savegame
############ These strings may never get a new id, or savegames will break!
##id 0x6000

##id 0x6020
############ end of savegame specific region!

##id 0x8000
# Vehicle names

##id 0x8800
# Formatting of some strings
STR_FORMAT_DATE_TINY                                            :{STRING}-{STRING}-{NUM}
STR_FORMAT_DATE_SHORT                                           :{STRING} {NUM}
STR_FORMAT_DATE_LONG                                            :{STRING} {STRING} {NUM}
STR_FORMAT_DATE_ISO                                             :{2:NUM}-{1:STRING}-{0:STRING}




# Viewport strings
STR_VIEWPORT_TOWN_POP                                           :{WHITE}{TOWN} ({COMMA})
STR_VIEWPORT_TOWN                                               :{WHITE}{TOWN}
STR_VIEWPORT_TOWN_TINY_BLACK                                    :{TINYFONT}{BLACK}{TOWN}
STR_VIEWPORT_TOWN_TINY_WHITE                                    :{TINYFONT}{WHITE}{TOWN}

STR_VIEWPORT_SIGN_SMALL_BLACK                                   :{TINYFONT}{BLACK}{SIGN}
STR_VIEWPORT_SIGN_SMALL_WHITE                                   :{TINYFONT}{WHITE}{SIGN}

STR_VIEWPORT_STATION                                            :{STATION} {STATIONFEATURES}
STR_VIEWPORT_STATION_TINY                                       :{TINYFONT}{STATION}

STR_VIEWPORT_WAYPOINT                                           :{WAYPOINT}
STR_VIEWPORT_WAYPOINT_TINY                                      :{TINYFONT}{WAYPOINT}

# Simple strings to get specific types of data
STR_COMPANY_NAME                                                :{COMPANY}
STR_COMPANY_NAME_COMPANY_NUM                                    :{COMPANY} {COMPANYNUM}
STR_ENGINE_NAME                                                 :{ENGINE}
STR_GROUP_NAME                                                  :{GROUP}
STR_INDUSTRY_NAME                                               :{INDUSTRY}
STR_PRESIDENT_NAME                                              :{PRESIDENTNAME}
STR_SIGN_NAME                                                   :{SIGN}
STR_STATION_NAME                                                :{STATION}
STR_TOWN_NAME                                                   :{TOWN}
STR_VEHICLE_NAME                                                :{VEHICLE}
STR_WAYPOINT_NAME                                               :{WAYPOINT}

STR_JUST_CARGO                                                  :{CARGO}
STR_JUST_CHECKMARK                                              :{CHECKMARK}
STR_JUST_COMMA                                                  :{COMMA}
STR_JUST_CURRCOMPACT                                            :{CURRCOMPACT}
STR_JUST_CURRENCY                                               :{CURRENCY}
STR_JUST_INT                                                    :{NUM}
STR_JUST_DATE_TINY                                              :{DATE_TINY}
STR_JUST_DATE_SHORT                                             :{DATE_SHORT}
STR_JUST_DATE_LONG                                              :{DATE_LONG}
STR_JUST_DATE_ISO                                               :{DATE_ISO}
STR_JUST_STRING                                                 :{STRING}
STR_JUST_RAW_STRING                                             :{STRING}

# Slightly 'raw' stringcodes with colour or size
STR_BLACK_ARROW_DOWN                                            :{BLACK}{DOWNARROW}
STR_BLACK_ARROW_UP                                              :{BLACK}{UPARROW}
STR_BLACK_COMMA                                                 :{BLACK}{COMMA}
STR_TINY_BLACK_COMA                                             :{TINYFONT}{BLACK}{COMMA}
STR_TINY_COMMA                                                  :{TINYFONT}{COMMA}
STR_BLUE_COMMA                                                  :{BLUE}{COMMA}
STR_RED_COMMA                                                   :{RED}{COMMA}
STR_COMPANY_MONEY                                               :{WHITE}{CURRENCY}
STR_BLACK_DATE_LONG                                             :{BLACK}{DATE_LONG}
STR_BLACK_CROSS                                                 :{BLACK}{CROSS}
STR_SILVER_CROSS                                                :{SILVER}{CROSS}
STR_WHITE_DATE_SHORT                                            :{WHITE}{DATE_SHORT}
STR_WHITE_DATE_LONG                                             :{WHITE}{DATE_LONG}
STR_SHORT_DATE                                                  :{WHITE}{DATE_TINY}
STR_DATE_LONG_SMALL                                             :{TINYFONT}{BLACK}{DATE_LONG}
STR_TINY_GROUP                                                  :{TINYFONT}{GROUP}
STR_WHITE_SIGN                                                  :{WHITE}{SIGN}
STR_TINY_BLACK_STATION                                          :{TINYFONT}{BLACK}{STATION}
STR_BLACK_STRING                                                :{BLACK}{STRING}
STR_BLACK_RAW_STRING                                            :{BLACK}{STRING}
STR_WHITE_STRING                                                :{WHITE}{STRING}
STR_TINY_BLACK_VEHICLE                                          :{TINYFONT}{BLACK}{VEHICLE}

STR_BLACK_SMALL_ARROW_UP                                        :{BLACK}{SMALLUPARROW}
STR_BLACK_SMALL_ARROW_DOWN                                      :{BLACK}{SMALLDOWNARROW}
STR_TINY_RIGHT_ARROW                                            :{TINYFONT}{RIGHTARROW}
STR_BLACK_SMALL_ARROW_LEFT                                      :{BLACK}{SMALLLEFTARROW}
STR_BLACK_SMALL_ARROW_RIGHT                                     :{BLACK}{SMALLRIGHTARROW}

STR_BLACK_1                                                     :{BLACK}۱
STR_BLACK_2                                                     :{BLACK}۲
STR_BLACK_3                                                     :{BLACK}۳
STR_BLACK_4                                                     :{BLACK}۴
STR_BLACK_5                                                     :{BLACK}۵

STR_TRAIN                                                       :{BLACK}{TRAIN}
STR_BUS                                                         :{BLACK}{BUS}
STR_LORRY                                                       :{BLACK}{LORRY}
STR_PLANE                                                       :{BLACK}{PLANE}
STR_SHIP                                                        :{BLACK}{SHIP}

STR_NUM_1                                                       :{BLACK}{SKIP}{NUM}
STR_NUM_2                                                       :{BLACK}{SKIP}{SKIP}{NUM}
STR_NUM_3                                                       :{BLACK}{SKIP}{SKIP}{SKIP}{NUM}