├── LICENSE ├── README.md ├── icons ├── README.md ├── color_schemes.xml ├── map_points │ ├── output │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_bomb_point.png │ │ │ ├── ic_bomber_spawn.png │ │ │ ├── ic_capture_point.png │ │ │ ├── ic_capture_point_a.png │ │ │ ├── ic_capture_point_b.png │ │ │ ├── ic_capture_point_c.png │ │ │ ├── ic_capture_point_d.png │ │ │ ├── ic_capture_point_e.png │ │ │ ├── ic_capture_point_f.png │ │ │ ├── ic_defend_ico.png │ │ │ ├── ic_defend_point.png │ │ │ ├── ic_fighter_spawn.png │ │ │ └── ic_tank_spawn.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_bomb_point.png │ │ │ ├── ic_bomber_spawn.png │ │ │ ├── ic_capture_point.png │ │ │ ├── ic_capture_point_a.png │ │ │ ├── ic_capture_point_b.png │ │ │ ├── ic_capture_point_c.png │ │ │ ├── ic_capture_point_d.png │ │ │ ├── ic_capture_point_e.png │ │ │ ├── ic_capture_point_f.png │ │ │ ├── ic_defend_ico.png │ │ │ ├── ic_defend_point.png │ │ │ ├── ic_fighter_spawn.png │ │ │ └── ic_tank_spawn.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_bomb_point.png │ │ │ ├── ic_bomber_spawn.png │ │ │ ├── ic_capture_point.png │ │ │ ├── ic_capture_point_a.png │ │ │ ├── ic_capture_point_b.png │ │ │ ├── ic_capture_point_c.png │ │ │ ├── ic_capture_point_d.png │ │ │ ├── ic_capture_point_e.png │ │ │ ├── ic_capture_point_f.png │ │ │ ├── ic_defend_ico.png │ │ │ ├── ic_defend_point.png │ │ │ ├── ic_fighter_spawn.png │ │ │ └── ic_tank_spawn.png │ │ │ └── drawable-xxhdpi │ │ │ ├── ic_bomb_point.png │ │ │ ├── ic_bomber_spawn.png │ │ │ ├── ic_capture_point.png │ │ │ ├── ic_capture_point_a.png │ │ │ ├── ic_capture_point_b.png │ │ │ ├── ic_capture_point_c.png │ │ │ ├── ic_capture_point_d.png │ │ │ ├── ic_capture_point_e.png │ │ │ ├── ic_capture_point_f.png │ │ │ ├── ic_defend_ico.png │ │ │ ├── ic_defend_point.png │ │ │ ├── ic_fighter_spawn.png │ │ │ └── ic_tank_spawn.png │ └── source │ │ ├── aim_circle.svg │ │ ├── bomber_spawn.png │ │ ├── bomber_spawn.svg │ │ ├── capture_point.png │ │ ├── capture_point.svg │ │ ├── capture_point_a.png │ │ ├── capture_point_a.svg │ │ ├── capture_point_b.png │ │ ├── capture_point_b.svg │ │ ├── capture_point_c.png │ │ ├── capture_point_c.svg │ │ ├── capture_point_d.png │ │ ├── capture_point_d.svg │ │ ├── capture_point_e.png │ │ ├── capture_point_e.svg │ │ ├── capture_point_f.png │ │ ├── capture_point_f.svg │ │ ├── defend_point.png │ │ ├── defend_point.svg │ │ ├── defend_point_2.svg │ │ ├── fighter_spawn.png │ │ ├── fighter_spawn.svg │ │ ├── tank_spawn.png │ │ ├── tank_spawn.svg │ │ ├── target_point.png │ │ └── target_point.svg ├── misc │ ├── output │ │ ├── drawable-hdpi │ │ │ ├── ic_dot.png │ │ │ ├── ic_pin_b.png │ │ │ ├── ic_pin_gray.png │ │ │ ├── ic_pin_r.png │ │ │ └── ic_skull.png │ │ ├── drawable-mdpi │ │ │ ├── ic_dot.png │ │ │ ├── ic_pin_b.png │ │ │ ├── ic_pin_gray.png │ │ │ ├── ic_pin_r.png │ │ │ └── ic_skull.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_dot.png │ │ │ ├── ic_pin_b.png │ │ │ ├── ic_pin_gray.png │ │ │ ├── ic_pin_r.png │ │ │ └── ic_skull.png │ │ └── drawable-xxhdpi │ │ │ ├── ic_dot.png │ │ │ ├── ic_pin_b.png │ │ │ ├── ic_pin_gray.png │ │ │ ├── ic_pin_r.png │ │ │ └── ic_skull.png │ └── source │ │ ├── Skull_and_crossbones_vector.svg │ │ ├── dot.png │ │ ├── dot.svg │ │ ├── pin.png │ │ └── skull.png ├── modern_icons │ ├── output │ │ ├── drawable-hdpi │ │ │ ├── ic_airdefense.png │ │ │ ├── ic_airplane_bomber_n.png │ │ │ ├── ic_airplane_fighter_n.png │ │ │ ├── ic_airplane_hvy_fighter_n.png │ │ │ ├── ic_airplane_player_n.png │ │ │ ├── ic_ground.png │ │ │ ├── ic_ship.png │ │ │ ├── ic_structure.png │ │ │ ├── ic_tank_destroyer.png │ │ │ ├── ic_tank_heavy.png │ │ │ ├── ic_tank_light.png │ │ │ ├── ic_tank_medium.png │ │ │ ├── ic_unknown.png │ │ │ └── ic_wheeled.png │ │ ├── drawable-mdpi │ │ │ ├── ic_airdefense.png │ │ │ ├── ic_airplane_bomber_n.png │ │ │ ├── ic_airplane_fighter_n.png │ │ │ ├── ic_airplane_hvy_fighter_n.png │ │ │ ├── ic_airplane_player_n.png │ │ │ ├── ic_ground.png │ │ │ ├── ic_ship.png │ │ │ ├── ic_structure.png │ │ │ ├── ic_tank_destroyer.png │ │ │ ├── ic_tank_heavy.png │ │ │ ├── ic_tank_light.png │ │ │ ├── ic_tank_medium.png │ │ │ ├── ic_unknown.png │ │ │ └── ic_wheeled.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_airdefense.png │ │ │ ├── ic_airplane_bomber_n.png │ │ │ ├── ic_airplane_fighter_n.png │ │ │ ├── ic_airplane_hvy_fighter_n.png │ │ │ ├── ic_airplane_player_n.png │ │ │ ├── ic_ground.png │ │ │ ├── ic_ship.png │ │ │ ├── ic_structure.png │ │ │ ├── ic_tank_destroyer.png │ │ │ ├── ic_tank_heavy.png │ │ │ ├── ic_tank_light.png │ │ │ ├── ic_tank_medium.png │ │ │ ├── ic_unknown.png │ │ │ └── ic_wheeled.png │ │ └── drawable-xxhdpi │ │ │ ├── ic_airdefense.png │ │ │ ├── ic_airplane_bomber_n.png │ │ │ ├── ic_airplane_fighter_n.png │ │ │ ├── ic_airplane_hvy_fighter_n.png │ │ │ ├── ic_airplane_player_n.png │ │ │ ├── ic_ground.png │ │ │ ├── ic_ship.png │ │ │ ├── ic_structure.png │ │ │ ├── ic_tank_destroyer.png │ │ │ ├── ic_tank_heavy.png │ │ │ ├── ic_tank_light.png │ │ │ ├── ic_tank_medium.png │ │ │ ├── ic_unknown.png │ │ │ └── ic_wheeled.png │ └── source │ │ ├── Air │ │ ├── airplane_bomber_n.png │ │ ├── airplane_fighter_n.png │ │ ├── airplane_hvy_fighter_n.png │ │ ├── airplane_player_n.png │ │ ├── ic_airplane_bomber.svg │ │ ├── ic_airplane_fighter.svg │ │ ├── ic_airplane_hvy_fighter.svg │ │ └── ic_airplane_player.svg │ │ └── Ground │ │ ├── airdefense.png │ │ ├── ground.png │ │ ├── ic_airdef.svg │ │ ├── ic_ground.svg │ │ ├── ic_ship.svg │ │ ├── ic_structure.svg │ │ ├── ic_tank.svg │ │ ├── ic_tank_heavy.svg │ │ ├── ic_tank_light.svg │ │ ├── ic_td.svg │ │ ├── ic_unknown.svg │ │ ├── ic_unknown_tank.svg │ │ ├── ic_wheeled.svg │ │ ├── ship.png │ │ ├── structure.png │ │ ├── tank_destroyer.png │ │ ├── tank_heavy.png │ │ ├── tank_light.png │ │ ├── tank_medium.png │ │ ├── unknown.png │ │ ├── unknown_tank.png │ │ └── wheeled.png └── original_old_icons │ ├── output │ ├── drawable-hdpi │ │ ├── ic_airplane_bomber.png │ │ ├── ic_airplane_fighter.png │ │ ├── ic_airplane_hvy_fighter.png │ │ └── ic_airplane_player.png │ ├── drawable-mdpi │ │ ├── ic_airplane_bomber.png │ │ ├── ic_airplane_fighter.png │ │ ├── ic_airplane_hvy_fighter.png │ │ └── ic_airplane_player.png │ ├── drawable-xhdpi │ │ ├── ic_airplane_bomber.png │ │ ├── ic_airplane_fighter.png │ │ ├── ic_airplane_hvy_fighter.png │ │ └── ic_airplane_player.png │ └── drawable-xxhdpi │ │ ├── ic_airplane_bomber.png │ │ ├── ic_airplane_fighter.png │ │ ├── ic_airplane_hvy_fighter.png │ │ └── ic_airplane_player.png │ └── source │ ├── Air │ ├── airplane_bomber.png │ ├── airplane_fighter.png │ ├── airplane_hvy_fighter.png │ └── airplane_player.png │ └── Ground-depricated │ ├── airdef_b.png │ ├── airdef_r.png │ ├── ground_b.png │ ├── ground_r.png │ ├── ship_b.png │ ├── ship_r.png │ ├── tank_b.png │ ├── tank_r.png │ ├── transportation_bus_16_b.png │ ├── transportation_bus_16_r.png │ ├── unknown_b.png │ ├── unknown_r.png │ ├── wall_b.png │ └── wall_r.png ├── ip_help ├── Check.png ├── Find.png ├── Remove.png ├── cmd.png ├── help │ ├── index.html │ └── wirelessrouter1.png ├── index.htm ├── ipconfig.png ├── jquery-1.10.2.min.js ├── start.png └── styles.css ├── sounds ├── beep_down.mp3 ├── beep_down2.mp3 ├── beep_up.mp3 ├── beep_up2.mp3 ├── burn.mp3 ├── double_kill.mp3 ├── kill.mp3 ├── killing_spree.mp3 ├── siren.mp3 └── triple_kill.mp3 └── translations ├── README.md ├── values-cs ├── help.xml └── strings.xml ├── values-de ├── help.xml └── strings.xml ├── values-el ├── help.xml └── strings.xml ├── values-en ├── help.xml └── strings.xml ├── values-es ├── help.xml └── strings.xml ├── values-fr ├── help.xml └── strings.xml ├── values-hr ├── help.xml └── strings.xml ├── values-hu ├── help.xml └── strings.xml ├── values-it ├── help.xml └── strings.xml ├── values-ja ├── help.xml └── strings.xml ├── values-ko ├── help.xml └── strings.xml ├── values-new_lng ├── help.xml └── strings.xml ├── values-nl ├── help.xml └── strings.xml ├── values-pl ├── help.xml └── strings.xml ├── values-pt-rBR ├── help.xml └── strings.xml ├── values-pt ├── help.xml ├── strings.xml └── strings.xml.old ├── values-ru ├── help.xml └── strings.xml ├── values-sv ├── help.xml └── strings.xml ├── values-tr ├── help.xml └── strings.xml ├── values-uk ├── help.xml └── strings.xml ├── values-zh-rTW ├── help.xml └── strings.xml └── values-zh ├── help.xml └── strings.xml /LICENSE: -------------------------------------------------------------------------------- 1 | http://mimiandeunice.com/wp-content/uploads/2011/08/ME_446_LegalExistence.png 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | wtTactMap 2 | ========= 3 | 4 | ### New app link 5 | Old app was **removed** from Google Play, new app can be found here: [here](https://play.google.com/store/apps/details?id=net.junkcode.tacticalmap) 6 | 7 | 8 | ### WarThunder tactical map resources 9 | 10 | Translations : [here](./translations/) 11 | 12 | Icons: [here](./icons) 13 | 14 | IP helper scripts: [here](./ip_help) 15 | 16 | ### Related 17 | Custom maps for WarThunder map: [here](https://github.com/JunkCode/Custom-WarThunder-maps) 18 | -------------------------------------------------------------------------------- /icons/README.md: -------------------------------------------------------------------------------- 1 | Icons 2 | ========= 3 | 4 | Icon resources. 5 | 6 | Feel free to suggest changes or whole new sets for icons and color schemes. 7 | 8 | Folders contain source files and resulting images genereted by http://romannurik.github.io/AndroidAssetStudio/icons-generic.html 9 | 10 | You can discuss it here or on http://junkcode.net/forum/viewforum.php?f=14 11 | -------------------------------------------------------------------------------- /icons/color_schemes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 0xffffbf09 6 | 0xff7fd509 7 | 0xff09d5c8 8 | 0xffd51009 9 | 10 | 11 | 12 | 13 | 0xffa62500 14 | 0xff9ff33d 15 | 0xff09d5c8 16 | 0xffa52959 17 | 18 | 19 | -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_bomb_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_bomb_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_bomber_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_bomber_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_capture_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_capture_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_capture_point_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_capture_point_a.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_capture_point_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_capture_point_b.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_capture_point_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_capture_point_c.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_capture_point_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_capture_point_d.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_capture_point_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_capture_point_e.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_capture_point_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_capture_point_f.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_defend_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_defend_ico.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_defend_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_defend_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_fighter_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_fighter_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-hdpi/ic_tank_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-hdpi/ic_tank_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_bomb_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_bomb_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_bomber_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_bomber_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_capture_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_capture_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_capture_point_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_capture_point_a.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_capture_point_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_capture_point_b.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_capture_point_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_capture_point_c.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_capture_point_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_capture_point_d.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_capture_point_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_capture_point_e.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_capture_point_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_capture_point_f.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_defend_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_defend_ico.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_defend_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_defend_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_fighter_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_fighter_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-mdpi/ic_tank_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-mdpi/ic_tank_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_bomb_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_bomb_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_bomber_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_bomber_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_capture_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_capture_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_capture_point_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_capture_point_a.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_capture_point_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_capture_point_b.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_capture_point_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_capture_point_c.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_capture_point_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_capture_point_d.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_capture_point_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_capture_point_e.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_capture_point_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_capture_point_f.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_defend_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_defend_ico.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_defend_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_defend_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_fighter_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_fighter_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xhdpi/ic_tank_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xhdpi/ic_tank_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_bomb_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_bomb_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_bomber_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_bomber_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_capture_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_capture_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_a.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_b.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_c.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_d.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_e.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_capture_point_f.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_defend_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_defend_ico.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_defend_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_defend_point.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_fighter_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_fighter_spawn.png -------------------------------------------------------------------------------- /icons/map_points/output/res/drawable-xxhdpi/ic_tank_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/output/res/drawable-xxhdpi/ic_tank_spawn.png -------------------------------------------------------------------------------- /icons/map_points/source/aim_circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 30 | 31 | 51 | 55 | 59 | 60 | 62 | 63 | 65 | image/svg+xml 66 | 68 | 69 | 70 | 71 | 72 | 76 | 86 | 95 | 104 | 113 | 122 | 131 | 132 | 133 | -------------------------------------------------------------------------------- /icons/map_points/source/bomber_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/bomber_spawn.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/capture_point.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 26 | 30 | 31 | 32 | 52 | 56 | 60 | 61 | 63 | 64 | 66 | image/svg+xml 67 | 69 | 70 | 71 | 72 | 73 | 77 | 81 | X 94 | 95 | -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/capture_point_a.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_a.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 26 | 30 | 31 | 32 | 52 | 56 | 60 | 61 | 63 | 64 | 66 | image/svg+xml 67 | 69 | 70 | 71 | 72 | 73 | 77 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/capture_point_b.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_b.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 26 | 30 | 31 | 32 | 52 | 56 | 60 | 61 | 63 | 64 | 66 | image/svg+xml 67 | 69 | 70 | 71 | 72 | 73 | 77 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/capture_point_c.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_c.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 26 | 30 | 31 | 32 | 52 | 56 | 60 | 61 | 63 | 64 | 66 | image/svg+xml 67 | 69 | 70 | 71 | 72 | 73 | 77 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/capture_point_d.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_d.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 26 | 30 | 31 | 32 | 52 | 56 | 60 | 61 | 63 | 64 | 66 | image/svg+xml 67 | 69 | 70 | 71 | 72 | 73 | 77 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/capture_point_e.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_e.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 26 | 30 | 31 | 32 | 52 | 56 | 60 | 61 | 63 | 64 | 66 | image/svg+xml 67 | 69 | 70 | 71 | 72 | 73 | 77 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/capture_point_f.png -------------------------------------------------------------------------------- /icons/map_points/source/capture_point_f.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 26 | 30 | 31 | 32 | 52 | 56 | 60 | 61 | 63 | 64 | 66 | image/svg+xml 67 | 69 | 70 | 71 | 72 | 73 | 77 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /icons/map_points/source/defend_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/defend_point.png -------------------------------------------------------------------------------- /icons/map_points/source/defend_point.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 43 | 47 | 51 | 52 | 54 | 55 | 57 | image/svg+xml 58 | 60 | 61 | 62 | 63 | 64 | 68 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /icons/map_points/source/fighter_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/fighter_spawn.png -------------------------------------------------------------------------------- /icons/map_points/source/tank_spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/tank_spawn.png -------------------------------------------------------------------------------- /icons/map_points/source/target_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/map_points/source/target_point.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-hdpi/ic_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-hdpi/ic_dot.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-hdpi/ic_pin_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-hdpi/ic_pin_b.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-hdpi/ic_pin_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-hdpi/ic_pin_gray.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-hdpi/ic_pin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-hdpi/ic_pin_r.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-hdpi/ic_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-hdpi/ic_skull.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-mdpi/ic_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-mdpi/ic_dot.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-mdpi/ic_pin_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-mdpi/ic_pin_b.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-mdpi/ic_pin_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-mdpi/ic_pin_gray.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-mdpi/ic_pin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-mdpi/ic_pin_r.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-mdpi/ic_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-mdpi/ic_skull.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xhdpi/ic_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xhdpi/ic_dot.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xhdpi/ic_pin_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xhdpi/ic_pin_b.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xhdpi/ic_pin_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xhdpi/ic_pin_gray.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xhdpi/ic_pin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xhdpi/ic_pin_r.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xhdpi/ic_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xhdpi/ic_skull.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xxhdpi/ic_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xxhdpi/ic_dot.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xxhdpi/ic_pin_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xxhdpi/ic_pin_b.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xxhdpi/ic_pin_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xxhdpi/ic_pin_gray.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xxhdpi/ic_pin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xxhdpi/ic_pin_r.png -------------------------------------------------------------------------------- /icons/misc/output/drawable-xxhdpi/ic_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/output/drawable-xxhdpi/ic_skull.png -------------------------------------------------------------------------------- /icons/misc/source/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/source/dot.png -------------------------------------------------------------------------------- /icons/misc/source/dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 24 | 26 | 30 | 34 | 38 | 42 | 43 | 53 | 54 | 72 | 74 | 75 | 77 | image/svg+xml 78 | 80 | 81 | 82 | 83 | 84 | 88 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /icons/misc/source/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/source/pin.png -------------------------------------------------------------------------------- /icons/misc/source/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/misc/source/skull.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_airdefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_airdefense.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_airplane_bomber_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_airplane_bomber_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_airplane_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_airplane_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_airplane_hvy_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_airplane_hvy_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_airplane_player_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_airplane_player_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_ground.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_ship.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_structure.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_tank_destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_tank_destroyer.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_tank_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_tank_heavy.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_tank_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_tank_light.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_tank_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_tank_medium.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_unknown.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-hdpi/ic_wheeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-hdpi/ic_wheeled.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_airdefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_airdefense.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_airplane_bomber_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_airplane_bomber_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_airplane_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_airplane_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_airplane_hvy_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_airplane_hvy_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_airplane_player_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_airplane_player_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_ground.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_ship.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_structure.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_tank_destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_tank_destroyer.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_tank_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_tank_heavy.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_tank_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_tank_light.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_tank_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_tank_medium.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_unknown.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-mdpi/ic_wheeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-mdpi/ic_wheeled.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_airdefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_airdefense.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_airplane_bomber_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_airplane_bomber_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_airplane_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_airplane_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_airplane_hvy_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_airplane_hvy_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_airplane_player_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_airplane_player_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_ground.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_ship.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_structure.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_tank_destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_tank_destroyer.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_tank_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_tank_heavy.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_tank_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_tank_light.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_tank_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_tank_medium.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_unknown.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xhdpi/ic_wheeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xhdpi/ic_wheeled.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_airdefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_airdefense.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_airplane_bomber_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_airplane_bomber_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_airplane_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_airplane_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_airplane_hvy_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_airplane_hvy_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_airplane_player_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_airplane_player_n.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_ground.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_ship.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_structure.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_tank_destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_tank_destroyer.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_tank_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_tank_heavy.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_tank_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_tank_light.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_tank_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_tank_medium.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_unknown.png -------------------------------------------------------------------------------- /icons/modern_icons/output/drawable-xxhdpi/ic_wheeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/output/drawable-xxhdpi/ic_wheeled.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Air/airplane_bomber_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Air/airplane_bomber_n.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Air/airplane_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Air/airplane_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Air/airplane_hvy_fighter_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Air/airplane_hvy_fighter_n.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Air/airplane_player_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Air/airplane_player_n.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Air/ic_airplane_bomber.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 24 | 27 | 31 | 32 | 36 | 41 | 47 | 52 | 57 | 63 | 64 | 65 | 84 | 86 | 87 | 89 | image/svg+xml 90 | 92 | 93 | 94 | 95 | 96 | 101 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Air/ic_airplane_hvy_fighter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 24 | 27 | 31 | 32 | 36 | 41 | 47 | 52 | 57 | 63 | 64 | 65 | 84 | 86 | 87 | 89 | image/svg+xml 90 | 92 | 93 | 94 | 95 | 96 | 101 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/airdefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/airdefense.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/ground.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_airdef.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 90 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_ground.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 90 | 97 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_ship.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 53 | 57 | 58 | 59 | 80 | 82 | 83 | 85 | image/svg+xml 86 | 88 | 89 | 90 | 91 | 92 | 97 | 104 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_structure.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 90 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_tank.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 89 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_tank_heavy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 90 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_tank_light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 91 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 93 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_unknown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 93 | 103 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_unknown_tank.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 93 | 103 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ic_wheeled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 23 | 25 | 29 | 33 | 34 | 41 | 45 | 46 | 47 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 78 | 83 | 93 | 103 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/ship.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/structure.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/tank_destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/tank_destroyer.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/tank_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/tank_heavy.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/tank_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/tank_light.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/tank_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/tank_medium.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/unknown.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/unknown_tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/unknown_tank.png -------------------------------------------------------------------------------- /icons/modern_icons/source/Ground/wheeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/modern_icons/source/Ground/wheeled.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-hdpi/ic_airplane_bomber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-hdpi/ic_airplane_bomber.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-hdpi/ic_airplane_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-hdpi/ic_airplane_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-hdpi/ic_airplane_hvy_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-hdpi/ic_airplane_hvy_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-hdpi/ic_airplane_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-hdpi/ic_airplane_player.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-mdpi/ic_airplane_bomber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-mdpi/ic_airplane_bomber.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-mdpi/ic_airplane_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-mdpi/ic_airplane_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-mdpi/ic_airplane_hvy_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-mdpi/ic_airplane_hvy_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-mdpi/ic_airplane_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-mdpi/ic_airplane_player.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xhdpi/ic_airplane_bomber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xhdpi/ic_airplane_bomber.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xhdpi/ic_airplane_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xhdpi/ic_airplane_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xhdpi/ic_airplane_hvy_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xhdpi/ic_airplane_hvy_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xhdpi/ic_airplane_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xhdpi/ic_airplane_player.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_bomber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_bomber.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_hvy_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_hvy_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/output/drawable-xxhdpi/ic_airplane_player.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Air/airplane_bomber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Air/airplane_bomber.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Air/airplane_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Air/airplane_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Air/airplane_hvy_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Air/airplane_hvy_fighter.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Air/airplane_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Air/airplane_player.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/airdef_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/airdef_b.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/airdef_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/airdef_r.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/ground_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/ground_b.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/ground_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/ground_r.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/ship_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/ship_b.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/ship_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/ship_r.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/tank_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/tank_b.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/tank_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/tank_r.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/transportation_bus_16_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/transportation_bus_16_b.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/transportation_bus_16_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/transportation_bus_16_r.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/unknown_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/unknown_b.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/unknown_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/unknown_r.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/wall_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/wall_b.png -------------------------------------------------------------------------------- /icons/original_old_icons/source/Ground-depricated/wall_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/icons/original_old_icons/source/Ground-depricated/wall_r.png -------------------------------------------------------------------------------- /ip_help/Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/ip_help/Check.png -------------------------------------------------------------------------------- /ip_help/Find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/ip_help/Find.png -------------------------------------------------------------------------------- /ip_help/Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/ip_help/Remove.png -------------------------------------------------------------------------------- /ip_help/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/ip_help/cmd.png -------------------------------------------------------------------------------- /ip_help/help/wirelessrouter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/ip_help/help/wirelessrouter1.png -------------------------------------------------------------------------------- /ip_help/ipconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/ip_help/ipconfig.png -------------------------------------------------------------------------------- /ip_help/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/ip_help/start.png -------------------------------------------------------------------------------- /ip_help/styles.css: -------------------------------------------------------------------------------- 1 | .datagrid table { 2 | border-collapse: collapse; text-align: left; width: 100%; 3 | } 4 | .datagrid { 5 | font: normal 12px/150% Arial, Helvetica, sans-serif; background: #fff; overflow: hidden; border: 1px solid #006699; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; 6 | } 7 | .datagrid table td, 8 | .datagrid table th { padding: 3px 10px; } 9 | .datagrid table thead th {background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #006699), color-stop(1, #00557F) );background:-moz-linear-gradient( center top, #006699 5%, #00557F 100% );filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#006699', endColorstr='#00557F');background-color:#006699; color:#FFFFFF; font-size: 15px; font-weight: bold; border-left: 1px solid #0070A8; } 10 | .datagrid table thead th:first-child { border: none; } 11 | .datagrid table tbody td { color: #00557F; font-size: 12px;border-bottom: 1px solid #E1EEF4;font-weight: normal; } 12 | .datagrid table tbody td:first-child { border-left: none; } 13 | .datagrid table tbody tr:last-child td { border-bottom: none; } 14 | .datagrid table tfoot td div { border-top: 1px solid #006699;background: #E1EEf4;} 15 | .datagrid table tfoot td { padding: 0; font-size: 12px } 16 | .datagrid table tfoot td div{ padding: 2px; } 17 | .datagrid table tfoot td ul { margin: 0; padding:0; list-style: none; text-align: right; } 18 | .datagrid table tfoot li { display: inline; } 19 | .datagrid table tfoot li a { text-decoration: none; display: inline-block; padding: 2px 8px; margin: 1px;color: #FFFFFF;border: 1px solid #006699;-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #006699), color-stop(1, #00557F) );background:-moz-linear-gradient( center top, #006699 5%, #00557F 100% );filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#006699', endColorstr='#00557F');background-color:#006699; } 20 | .datagrid table tfoot ul.active, 21 | .datagrid table tfoot ul a:hover { text-decoration: none;border-color: #00557F; color: #FFFFFF; background: none; background-color:#006699;} 22 | -------------------------------------------------------------------------------- /sounds/beep_down.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/beep_down.mp3 -------------------------------------------------------------------------------- /sounds/beep_down2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/beep_down2.mp3 -------------------------------------------------------------------------------- /sounds/beep_up.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/beep_up.mp3 -------------------------------------------------------------------------------- /sounds/beep_up2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/beep_up2.mp3 -------------------------------------------------------------------------------- /sounds/burn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/burn.mp3 -------------------------------------------------------------------------------- /sounds/double_kill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/double_kill.mp3 -------------------------------------------------------------------------------- /sounds/kill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/kill.mp3 -------------------------------------------------------------------------------- /sounds/killing_spree.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/killing_spree.mp3 -------------------------------------------------------------------------------- /sounds/siren.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/siren.mp3 -------------------------------------------------------------------------------- /sounds/triple_kill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunkCode/wtTactMap/5ce10220157b920fb591bf509bfc41cd685910ee/sounds/triple_kill.mp3 -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- 1 | Repository for [WarThunder App](https://play.google.com/store/apps/details?id=net.junkcode.warthundertacticalmap) Translations 2 | ========= 3 | 4 | Guide to translating on GitHub: 5 | http://junkcode.net/forum/viewtopic.php?f=14&t=18 6 | -------------------------------------------------------------------------------- /translations/values-cs/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ovládání mapy 5 | 6 | 1 Nevazaný pohyb\n 7 | 2 Pohyb s vozidlem\n 8 | 3 Zámek rotace\n 9 | 4 Klikni pro navrácení\n 10 | 11 | 12 | Předpověď pozice 13 | 14 | Předpověď pozice na základě aktuální rychlosti a směru (pozice za 10,30 a 90 vteřin). 15 | 16 | 17 | FAQ (Často kladené otázky) 18 | 19 | Připojení 20 | 21 | Jak se připojím?\n 22 | \u00A0\u00A0 Aplikace potřebuje IP adresu počítače, kde běží War Thunder. Jak získat adresu zjitíte na http://ip.junkcode.net \n\n 23 | 24 | Zadal jsem tam IP adresu, ale pořád to píše \"Žádné spojení\"\n 25 | \u00A0\u00A0 Pokud je adresa správná tak je problém v routování místní sítě. Pro detaily se podívejte na http://ip.junkcode.net/help \n\n 26 | 27 | Pořád se to nepřipojuje!\n 28 | \u00A0\u00A0 Řešení je pořád tady http://ip.junkcode.net/help 29 | \n 30 | 31 | 32 | Extra 33 | 34 | Přispěl jsem, kde je můj kód?\n 35 | \u00A0\u00A0 Kód by měl dojít během pár minut na email, pokud se tak nestane kontaktujte support@junkcode.net \n\n 36 | 37 | Zadal jsem kód a nic se nestalo\n 38 | \u00A0\u00A0 Zkuste restartovat aplikaci \n\n 39 | 40 | 41 | Vylepšení aplikace 42 | " 43 | Něco se mi nelíbí\n 44 | \u00A0\u00A0 Dejte nám vědět co - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Našel sem chybu\n 47 | \u00A0\u00A0 Napište ji sem - http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Mám nápad na další funkčnost\n 50 | \u00A0\u00A0 Dejte nám vědět - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Chci pomoct s překladem/ikonama/...\n 53 | \u00A0\u00A0 Část zdrojových souborů už je tady http://github.com/JunkCode/wtTactMap. Můžete tam přímo navrhnout změny nebo na základě těch souborů vytvořit další. Pokud máte nějaké otázky nebo další nápady, dejte nám vědět - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-de/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map-Steuerung 5 | 6 | 1 Freier Modus\n 7 | 2 Flugzeug folgen\n 8 | 3 Drehung sperren\n 9 | 4 Klicken, zum Zurücksetzen\n 10 | 11 | 12 | Prognostizierung 13 | 14 | Prognostiziert die Position des Flugzeuges (basierend auf derzeitiger Richtung und Geschwindigkeit) in 10, 30 und 90 Sekunden 15 | 16 | 17 | FAQ (Häufig gestellte Fragen) 18 | 19 | Verbindung 20 | 21 | Wie stelle ich eine Verbindung her?\n 22 | \u00A0\u00A0 Die App benötigt die IP-Adresse Deines Computers auf dem War Thunder läuft. Diese kannst Du hier herausfinden: http://ip.junkcode.net \n\n 23 | 24 | Ich habe eine IP eingegeben aber es wird weiterhin \"Keine Verbindung\" angezeigt\n 25 | \u00A0\u00A0 Dies könnte an einem Problem mit Deinen lokalen Routing-Einstellungen liegen. Siehe http://ip.junkcode.net/help \n\n 26 | 27 | Immer noch keine Verbindung!\n 28 | \u00A0\u00A0 Du hast Dir das nicht durchgelesen http://ip.junkcode.net/help, stimmt\'s? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | Ich habe gespendet, wo ist mein Code?\n 35 | \u00A0\u00A0 Der Code sollte per E-Mail einige Minuten nach der Spende ankommen. Falls nicht, kontaktiere bitte support@junkcode.net \n\n 36 | 37 | Ich habe den Code eingegeben aber nichts wurde freigeschaltet\n 38 | \u00A0\u00A0 Starte die App neu \n\n 39 | 40 | 41 | App-Verbesserungen 42 | " 43 | Mir gefällt dieses/jenes nicht\n 44 | \u00A0\u00A0 Dann lass uns das wissen - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Ich habe einen Bug gefunden\n 47 | \u00A0\u00A0 Bitte hier posten http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Ich habe eine Idee für neue Funktionen\n 50 | \u00A0\u00A0 Auch das kannst Du uns mitteilen - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Ich würde gerne helfen (Übersetzung/Icons/...)\n 53 | \u00A0\u00A0 Einige Ressourcen sind bereits hier: http://github.com/JunkCode/wtTactMap Du kannst hier Änderungen vorschlagen oder Neues hinzufügen. Wenn Du weitere Fragen oder Ideen hast, kannst Du uns gerne schreiben - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-el/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Χειρισμός χάρτη 5 | 6 | 1 Ελεύθερη λειτουργία\n 7 | 2 Ακολούθηση αεροπλάνου\n 8 | 3 Κλείδωμα περιστριφής\n 9 | 4 Click για επαναφορά\n 10 | 11 | 12 | Πρόβλεψη 13 | 14 | Πρόβλεψη θέσης αεροπλάνου (βασισμένη στην τρέχουσα ταχύτητα και διεύθυνση) σε 10,30 και 90 δεύτερα 15 | 16 | 17 | FAQ (Συνήθης ερωτήσεις) 18 | 19 | Σύνδεση 20 | 21 | Πως συνδέομαι?\n 22 | \u00A0\u00A0 Η εφαρμογή χρειάζεται την διεύθυνση IP του υπολογιστή που τρέχει το War Thunder, για το πως να βρεις την IP σου δες http://ip.junkcode.net \n\n 23 | 24 | Έβαλα την IP και ακόμα λέει \"Μη σύνδεση\"\n 25 | \u00A0\u00A0 Ίσως υπάρχει πρόβλημα με το τοπικό σου δίκτυο κοίταξε http://ip.junkcode.net/help \n\n 26 | 27 | Εξακολουθεί να μην συνδέεται!\n 28 | \u00A0\u00A0 Δεν διάβασες εδώ http://ip.junkcode.net/help, διάβασες? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | Έκανα δωρεά, που είναι ο κωδικός μου?\n 35 | \u00A0\u00A0 Θα πρέπει να λάβεις κωδικό στο mail σου σε μερικά λεπτά μετά την δωρεά, αν όχι επικοινώνησε support@junkcode.net \n\n 36 | 37 | Έβαλα τον κωδικό αλλά τίποτα δεν ξεκλείδωσε\n 38 | \u00A0\u00A0 Δοκίμασε να επανεκκινήσεις την εφαρμογή \n\n 39 | 40 | 41 | Βελτίωση εφαρμογής 42 | " 43 | Δεν μου αρέσει κάτι\n 44 | \u00A0\u00A0 Πέστο μας - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Βρήκα ένα πρόβλημαI found a bug\n 47 | \u00A0\u00A0 Γράψτο εδώ http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Έχω μια ιδέα για καινούργιο χαρακτηριστικό\n 50 | \u00A0\u00A0 Πέστο μας - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Θέλω να βοηθήσω στην μετάφραση/εικονίδια/...\n 53 | \u00A0\u00A0 Μερικοί από τους πόρους υπάρχουν ήδη εδώ http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-en/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10, 30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-es/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Configuración 5 | 6 | 1 Modo libre\n 7 | 2 Seguir avión\n 8 | 3 Bloquear giro\n 9 | 4 Pulsa para inicializar\n 10 | 11 | 12 | Predicción 13 | 14 | Predicción de la posición del avión (basada en la velocidad y dirección actuales) en 10, 30 y 90 segundos 15 | 16 | 17 | FAQ (Frequently Asked Questions) 18 | 19 | Conexión 20 | 21 | ¿Cómo me conecto?\n 22 | \u00A0\u00A0 La App necesita la dirección IP del ordenador que ejecuta War Thunder. Para obtener tu IP consulta http://ip.junkcode.net \n\n 23 | 24 | He introducido la IP pero aún indica \"Sin conexión\"\n 25 | \u00A0\u00A0 Podría haber un problema con tu red local. Consulta http://ip.junkcode.net/help \n\n 26 | 27 | Aún no conecta!\n 28 | \u00A0\u00A0 No has consutado http://ip.junkcode.net/help, a que no? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | He realizado una donación, ¿dónde está mi código?\n 35 | \u00A0\u00A0 Deberías recibirlo en tu correo unos minutos después de la donación. Si no es así, contacta support@junkcode.net \n\n 36 | 37 | He introducido el código pero no se ha desbloqueado nada\n 38 | \u00A0\u00A0 Prueba reiniciando la App \n\n 39 | 40 | 41 | Mejoras de la App 42 | " 43 | No me gusta algo\n 44 | \u00A0\u00A0 Coméntanoslo en - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | He encontrado un fallo\n 47 | \u00A0\u00A0 Inclúyelo aquí, http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Tengo una idea para una nueva funcionalidad\n 50 | \u00A0\u00A0 Coméntanoslo en - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Quiero ayuda con la traducción/iconos/...\n 53 | \u00A0\u00A0 Algunos de los recursos están disponibles en http://github.com/JunkCode/wtTactMap Puedes proponer modificaciones o añadir nuevos. Si tienes preguntas o ideas coméntanoslas aquí - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-fr/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contrôle de la carte 5 | 6 | 1 Mode libre\n 7 | 2 Suivre l\'avion\n 8 | 3 Serrure de rotation\n 9 | 4 Cliquez pour réinitialiser\n 10 | 11 | 12 | Prédiction 13 | 14 | Prédiction de la position de l\'avion (basé sur la vitesse et la direction du moment) à 10, 30 et 90 secondes. 15 | 16 | 17 | FAQ (Foire aux questions) 18 | 19 | Lien 20 | 21 | Comment puis-je me connecter ?\n 22 | \u00A0\u00A0 L\'application a besoin de l\'adresse IP de l\'ordinateur exécutant Warthunder. Pour savoir comment obtenir votre IP voir http://ip.junkcode.net \n\n 23 | 24 | J\'ai fait entrer IP et il dit toujours \"Pas de connexion\"\n 25 | \u00A0\u00A0 Il pourrait y avoir des problèmes avec votre routage de réseau local voir http://ip.junkcode.net/help \n\n 26 | 27 | Il ne se connecte toujours pas !\n 28 | \u00A0\u00A0 Vous n\'avez pas lu http://ip.junkcode.net/help, n\'est-ce pas? 29 | 30 | 31 | Suppléments 32 | 33 | J\'ai fait un don, où est mon code?\n 34 | \u00A0\u00A0 Vous devez recevoir le code par email quelques minutes après le don, sinon contacter support@junkcode.net \n\n 35 | 36 | J\'ai entré le code mais rien n\'est débloqué\n 37 | \u00A0\u00A0 Essayez de redémarrer l\'application\n\n 38 | 39 | 40 | Amélioration de l\'appli 41 | " 42 | Je n\'aime pas quelque chose\n 43 | \u00A0\u00A0 Faites-nous savoir ce que c\'est - https://github.com/JunkCode/wtTactMap \n\n 44 | 45 | J\'ai trouvé un bug\n 46 | \u00A0\u00A0 Publiez le ici http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 47 | 48 | J\'ai une idée pour une nouvelle fonctionnalité\n 49 | \u00A0\u00A0 Faites-nous savoir ce que c\'est - https://github.com/JunkCode/wtTactMap \n\n 50 | 51 | Je veux aider pour la traduction/icons/...\n 52 | \u00A0\u00A0 Certaines des ressources sont déjà ici http://github.com/JunkCode/wtTactMap Vous pouvez proposer des modifications ou ajouter de nouvelles choses. Si vous avez une question ou d\'autres idées, faites-nous le savoir - https://github.com/JunkCode/wtTactMap \n\n 53 | " 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /translations/values-hr/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10, 30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-hu/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Térkép irányítás 5 | 6 | 1 Szabad mód\n 7 | 2 Repülőgép követése\n 8 | 3 Forgás rögzítése\n 9 | 4 Alaphelyzet\n 10 | 11 | 12 | Előrejelzés 13 | 14 | Repülőgép helyének előrejelzése (az aktuális sebesség és irány alapján) 10, 30 és 90 másodperc múlva. 15 | 16 | 17 | GYIK (Gyakran Ismételt Kérdések) 18 | 19 | Kapcsolódás 20 | 21 | Hogy kapcsolódjak?\n 22 | \u00A0\u00A0 Az appnak szüksége van egy gép IP címére, amin War Thunder fut, így találod meg: http://ip.junkcode.net \n\n 23 | 24 | Beírtam az IP címet, mégis azt írja: \"Nincs kapcsolat\"\n 25 | \u00A0\u00A0 Probléma lehet a hálózati beállításaiddal, segítség: http://ip.junkcode.net/help \n\n 26 | 27 | Továbbra sem kapcsolódik!\n 28 | \u00A0\u00A0 Nem olvastad el az http://ip.junkcode.net/help oldalt, ugye? 29 | \n 30 | 31 | 32 | Extrák 33 | 34 | Adományoztam, hol a kódom?\n 35 | \u00A0\u00A0 Egy email fog érkezni az adományozás után pár perccel, ha nem kaptál ilyet, írj ide: support@junkcode.net \n\n 36 | 37 | Beírtam a kódot, de nem oldott fel semmit!\n 38 | \u00A0\u00A0 Indítsd újra az appot. \n\n 39 | 40 | 41 | App fejlesztés 42 | " 43 | Nem tetszik valami!\n 44 | \u00A0\u00A0 Írd meg - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Hibát találtam!\n 47 | \u00A0\u00A0 Írd meg http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Van egy új ötletem!\n 50 | \u00A0\u00A0 Írd meg - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Szeretnék segíteni a fordításban/ikonokban stb.\n 53 | \u00A0\u00A0 Néhány forrást megtalálsz itt: http://github.com/JunkCode/wtTactMap Itt tudsz módosításokat kérni, vagy új dolgokat megadni. Ha bármi kérdésed van, vagy ötleted, írd meg - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-it/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Modalità libera\n 7 | 2 Segui il velivolo\n 8 | 3 Blocco rotazione\n 9 | 4 Click per resettare\n 10 | 11 | 12 | Predizione 13 | 14 | Stima posizione del velivolo (basata su velocità e posizione corrente) in 10,30 and 90 secondi 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | Come mi connetto?\n 22 | \u00A0\u00A0 L\'applicazione richiede l\'IP del computer che sta eseguendo War Thunder, per ulteriori istruzioni su come ottenere il proprio IP consultare http://ip.junkcode.net \n\n 23 | 24 | Ho inserito l\'IP ma continuo a ricevere \"Nessuna Connessione\"\n 25 | \u00A0\u00A0 Ci potrebbero essere ulteriori problemi con la tua rete locale, per ulteriori dettagli http://ip.junkcode.net/help \n\n 26 | 27 | Ancora non si connette!\n 28 | \u00A0\u00A0 Allora sei di coccio? Non hai ancora letto http://ip.junkcode.net/help, dai ammettilo ;p 29 | \n 30 | 31 | 32 | Extras 33 | 34 | Ho fatto la donazione, dov\'è il mio codice?\n 35 | \u00A0\u00A0 Dovresti ricevere il tuo codice alcuni minuti dopo la donazione, per ogni altra evenienza contatta support@junkcode.net \n\n 36 | 37 | Ho inserito il codice ma niente è cambiato\n 38 | \u00A0\u00A0 Prova a riavviare l\'app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | Non mi piace qualche cosa\n 44 | \u00A0\u00A0 Facci sapere cosa in dettaglio - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Ho trovato un bug\n 47 | \u00A0\u00A0 Pubblicalo su questa pagina http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Ho un\'idea per una nuova funzione\n 50 | \u00A0\u00A0 Faccelo sapere (preferibilmente in inglese) - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Voglio aiustare con la traduzione/icons/...\n 53 | \u00A0\u00A0 Parte delle risorse le puoi trovare su http://github.com/JunkCode/wtTactMap Puoi proporre modifiche ed aggiunte. Se hai domande o suggerimenti - https://github.com/JunkCode/wtTactMap \n\n 54 | " 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-ja/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10, 30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-ko/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 지도 조정 5 | 6 | 1 자유모드\n 7 | 2 비행기 시점\n 8 | 3 회전잠금\n 9 | 4 재설정\n 10 | 11 | 12 | 경로예측 13 | 14 | 비행기의 경로를 10 초, 30초, 90 초 마다 계산합니다 (비행기의 속도와 방향에따라서 계산됩니다) 15 | 16 | 17 | 문의 18 | 19 | 연결중 20 | 21 | 어떻게 연결하나요?\n 22 | \u00A0\u00A0 이 앱은 당신이 WarThunder 을 실행하고있는 컴퓨터의 IP 주소가 필요합니다, 당신의 IP 주소를 확인하는 방법을 보세요 : http://ip.junkcode.net \n\n 23 | 24 | 이미 IP 주소를 입력했습니다. 하지만 계속 \"연결되지 않음\ 만 뜹니다"\n 25 | \u00A0\u00A0 그것은 아마 당신의 로컬 네트워크 문제일겁니다. 옆에있는 주소의 사이트에 들어가셔서 확인해보세요 http://ip.junkcode.net/help \n\n 26 | 27 | 계속 \"연결되지 않음"\ 만 뜹니다\n 28 | \u00A0\u00A0 당신은 http://ip.junkcode.net/help 를 안읽어 보셨군요. 안그러신가요? 29 | \n 30 | 31 | 32 | 기타 33 | 34 | 후원을 하였습니다. 하지만 아무 코드도 못받았군요\n 35 | \u00A0\u00A0 코드가 당신이 후원을한뒤 몆분후 당신이입력한 이메일로 발송되었을 것입니다, 만약 도착하지 않는다면 이곳으로 이메일을 보내주새요: support@junkcode.net \n\n 36 | 37 | 코드를 입력했습니다. 하지만 아무일도 안일어나네요\n 38 | \u00A0\u00A0 앱을 재시작 해보십시오 \n\n 39 | 40 | 41 | 앱의 개선점 42 | " 43 | 무언가가 마음에들지 않습니다\n 44 | \u00A0\u00A0 무었이 마음에 안들으셨는지 저희에게 알려주십시오! - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | 오류를 발견하였습니다\n 47 | \u00A0\u00A0 이곳에 알려주십시오 : http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | 이 앱의 새로운 기능에대한 아이디어가 있습니다\n 50 | \u00A0\u00A0 새로운 아이디어를 이곳에 알려주십시오 - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | 번역을 돕고싶습니다/icons/...\n 53 | \u00A0\u00A0 이미 약간의 리소스들이 이곳에 있습니다 : http://github.com/JunkCode/wtTactMap 당신은 번역을 개선하거나 추가하실수 있습니다. 혹시 저희에게 물어보실것이 있거나 다른 아이디어가 있으시다면 저희에게 알려주십시오 - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-new_lng/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10, 30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-nl/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10,30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-pl/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10,30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-pt-rBR/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Controle do Mapa 5 | 6 | 1 Modo Livre\n 7 | 2 Seguir o avião\n 8 | 3 Travar rotação\n 9 | 4 Clique para resetar\n 10 | 11 | 12 | Predição 13 | 14 | Predição da posição do avião (baseado na velocidade e direção atual) em 10, 30 e 90 segundos 15 | 16 | 17 | Perguntas e Respostas 18 | 19 | Conexão 20 | 21 | Como eu conecto?\n 22 | \u00A0\u00A0 O app precisa de um endereço IP do seu computador rodando War Thunder, veja como obter seu endereço IP aqui: http://ip.junkcode.net \n\n 23 | 24 | Eu coloquei meu endereço IP e o app ainda diz \"Sem conexão\"\n 25 | \u00A0\u00A0 Pode haver um problema com o roteamento da sua rede local, veja: http://ip.junkcode.net/help \n\n 26 | 27 | Ainda não conecta!\n 28 | \u00A0\u00A0 Você não leu http://ip.junkcode.net/help, não é? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | Eu doei, onde está meu código?\n 35 | \u00A0\u00A0 Você deve receber seu código por email em alguns minutos após a doação, se você não recebeu seu código, contate support@junkcode.net \n\n 36 | 37 | Eu coloquei meu código mas nada foi desbloqueado\n 38 | \u00A0\u00A0 Tente reiniciar o app \n\n 39 | 40 | 41 | Melhoramento do app 42 | " 43 | Eu não gosto de algo\n 44 | \u00A0\u00A0 Deixe-nos saber o que - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Eu encontrei um bug\n 47 | \u00A0\u00A0 Poste ele aqui http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Eu tenho uma ideia para uma nova função\n 50 | \u00A0\u00A0 Deixe-nos saber o que - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Eu quero ajudar com a traducão/ícones/...\n 53 | \u00A0\u00A0 Alguns recursos já estão aqui http://github.com/JunkCode/wtTactMap Você pode propor modificações ou adicionar novas coisas. Se você tem alguma pergunta ou outras ideais deixe-nos saber - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-pt/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10,30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-ru/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Управление картой 5 | 6 | 1 Свободный режим\n 7 | 2 Следовать за самолетом\n 8 | 3 Без вращения\n 9 | 4 Нажмите для сброса\n 10 | 11 | 12 | Прогноз 13 | 14 | Прогнозирование положения самолета (при текущей скорости и направлении) через 10, 30 и 90 секунд 15 | 16 | 17 | ЧаВо (Частые Вопросы) 18 | 19 | Подключение 20 | 21 | Как подключить?\n 22 | \u00A0\u00A0 В приложении надо указать IP адрес вашего компьютера, на котором запущен War Thunder. Как узнать ваш IP адрес смотрите http://ip.junkcode.net \n\n 23 | 24 | Я указал IP адрес, но до сих пор висит сообщение \"No connection\"\n 25 | \u00A0\u00A0 У вас может быть проблема с маршрутизацией в локальной сети. Смотрите http://ip.junkcode.net/help \n\n 26 | 27 | Все равно не подключается!\n 28 | \u00A0\u00A0 Вы уже читали http://ip.junkcode.net/help, так ведь? 29 | \n 30 | 31 | 32 | Бонусы 33 | 34 | Я внес пожертвование, где мой код?\n 35 | \u00A0\u00A0 Вы должны получить код на ваш e-mail в течение нескольких минут после пожертвования. Если этого не произошло напишите по адресу support@junkcode.net \n\n 36 | 37 | Я ввел код, но ничего не разблокировалось\n 38 | \u00A0\u00A0 Попробуйте перезапустить приложение \n\n 39 | 40 | 41 | Улучшение приложения 42 | " 43 | Мне кое что не нравится\n 44 | \u00A0\u00A0 Скажите нам, что именно вам не нравится - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Я нашел ошибку\n 47 | \u00A0\u00A0 Напишите об этом http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | У меня есть идея новой функции\n 50 | \u00A0\u00A0 Обязательно рассажите нам - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Я хочу помочь с переводом/иконками/...\n 53 | \u00A0\u00A0 Часть ресурсов уже доступна тут http://github.com/JunkCode/wtTactMap Вы можете предложить изменения или добавить что-то новое. Если у Вас возникли вопросы или другие идеи, сообщите нам - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-sv/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kartinställningar 5 | 6 | 1 Fritt läge\n 7 | 2 Följ planet\n 8 | 3 Lås rotation\n 9 | 4 Tryck för att återställa\n 10 | 11 | 12 | Förutse flygplanets position 13 | 14 | Förutser flygplanets position (baserat på flygplanets nuvarande hastighet och kurs) med markeringar för 10,30 och 90 seunder 15 | 16 | 17 | Vanliga frågor 18 | 19 | Anslutning 20 | 21 | Hur ansluter jag?\n 22 | \u00A0\u00A0 Appen behöver IP adressen till datorn som kör War Thunder. Om du inte vet hur du hittar din IP adress kan du lära dig här http://ip.junkcode.net \n\n 23 | 24 | Jag angav rätt adress men ändå får jag meddelandet \"Ingen anslutning\"\n 25 | \u00A0\u00A0 Det kan vara något fel med anslutningen till din router. För hjälp besök http://ip.junkcode.net/help \n\n 26 | 27 | Jag kan fortfarande inte ansluta!\n 28 | \u00A0\u00A0 Har du verkligen läst http://ip.junkcode.net/help? 29 | \n 30 | 31 | 32 | Fler funktioner 33 | 34 | Jag har donerat, när får jag min kod?\n 35 | \u00A0\u00A0 Om du inte har fått den inom ett par minuter bör du kontakta support@junkcode.net \n\n 36 | 37 | Jag har matat in min kod men inga funktioner är upplåsta\n 38 | \u00A0\u00A0 Testa att starta om appen \n\n 39 | 40 | 41 | Förbättra appen 42 | " 43 | Det var något jag inte tyckte om\n 44 | \u00A0\u00A0 Låt oss veta vad du inte tyckte om- https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Jag hittade en bug\n 47 | \u00A0\u00A0 Låt oss veta här http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Förslag till nya funktioner\n 50 | \u00A0\u00A0 Låt oss veta vad - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Jag vill hjälpa till med översättningar/ikoner/med mera\n 53 | \u00A0\u00A0 En del resurser finns redan här http://github.com/JunkCode/wtTactMap Du kan föreslå fler ändringar eller förslag. Om du har några frågor så kan du ställa dem på - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-tr/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Harita Kontrolü 5 | 6 | 1 Serbest Mod\n 7 | 2 Uçağı Takip Et\n 8 | 3 Rotasyonu Kilitle\n 9 | 4 Sıfırlamak için Tıkla\n 10 | 11 | 12 | Tahmin 13 | 14 | 10, 30 ve 90 saniyede düzlem konumunun tahmini (geçerli hız ve yöne göre) 15 | 16 | 17 | SSS (Sık Sorulan Sorular) 18 | 19 | Bağlantı 20 | 21 | Nasıl bağlanırım?\n 22 | \u00A0\u00A0 Uygulamanın, War Thunder çalıştıran bilgisayarınızın IP adresini, IP\'nizi nasıl alacağınızı görmesi gerekir. http://ip.junkcode.net \n\n 23 | 24 | IP girdim ve hala diyor \"Bağlantı Yok\"\n 25 | \u00A0\u00A0 Yerel ağ yönlendirmenizde sorun olabilir. http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | Ben bağış yaptım, kodum nerede?\n 35 | \u00A0\u00A0 support@junkcode.net ile iletişime geçmezseniz, bağışınızdan sonra birkaç dakika içinde e-postanıza kod almalısınız. \n\n 36 | 37 | Kodu girdim ama hiçbir şey açılmadı\n 38 | \u00A0\u00A0 Uygulamayı yeniden başlatmayı deneyin \n\n 39 | 40 | 41 | Uygulama iyileştirme 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Bize bildir - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | Bir Hata Buldum!\n 47 | \u00A0\u00A0 Buraya gönderin http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | Yeni özellik için bir fikrim var\n 50 | \u00A0\u00A0 Bize bildir - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | Yardım etmek istiyorum translation/icons/...\n 53 | \u00A0\u00A0 Bazı kaynaklar zaten burada http://github.com/JunkCode/wtTactMap Değişiklik önerebilir veya yeni şeyler ekleyebilirsiniz. Herhangi bir sorunuz veya başka bir fikriniz varsa bize bildirin - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-uk/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Map control 5 | 6 | 1 Free mode\n 7 | 2 Follow plane\n 8 | 3 Rotation lock\n 9 | 4 Click to reset\n 10 | 11 | 12 | Prediction 13 | 14 | Prediction of plane position (based on current speed and direction) in 10,30 and 90 seconds 15 | 16 | 17 | FAQ (Frequently asked questions) 18 | 19 | Connection 20 | 21 | How do I connect?\n 22 | \u00A0\u00A0 The app needs an IP address of your computer running War Thunder, how to get your IP see http://ip.junkcode.net \n\n 23 | 24 | I did enter IP and it still says \"No connection\"\n 25 | \u00A0\u00A0 There might be problem with your local network routing see http://ip.junkcode.net/help \n\n 26 | 27 | It still doesn\'t connect!\n 28 | \u00A0\u00A0 You didn\'t read http://ip.junkcode.net/help, did you? 29 | \n 30 | 31 | 32 | Extras 33 | 34 | I donated, where is my code?\n 35 | \u00A0\u00A0 You should receive code to your email within few minutes after donation, if not contact support@junkcode.net \n\n 36 | 37 | I entered code but nothing is unlocked\n 38 | \u00A0\u00A0 Try restarting the app \n\n 39 | 40 | 41 | App improvement 42 | " 43 | I don\'t like something\n 44 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 45 | 46 | I found a bug\n 47 | \u00A0\u00A0 Post it here http://github.com/JunkCode/wtTactMap/issues?state=open \n\n 48 | 49 | I have idea for new feature\n 50 | \u00A0\u00A0 Let us know what - https://github.com/JunkCode/wtTactMap \n\n 51 | 52 | I want to help with translation/icons/...\n 53 | \u00A0\u00A0 Some of the resources are already here http://github.com/JunkCode/wtTactMap You can propose modification or add new things. If you have any question or other ideas let us know - https://github.com/JunkCode/wtTactMap \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-zh-rTW/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 地圖控制 5 | 6 | 1 自由模式\n 7 | 2 跟隨飛機\n 8 | 3 視角旋轉鎖\n 9 | 4 點擊重置\n 10 | 11 | 12 | 預測 13 | 14 | 預測飛機10.30.90s後的位置 (基於當前速度和方向) 15 | 16 | 17 | 常見問題 18 | 19 | 連接 20 | 21 | 我怎樣連接?\n 22 | \u00A0\u00A0 該應用程序需要獲得運行War Thunder的計算機的IP地址,如何獲取IP,請訪問http://ip.junkcode.net (英文) \n\n 23 | 24 | 我輸入了IP但它仍然提示 \"無連接\"\n 25 | \u00A0\u00A0 您的本地網絡路由可能有問題,請參閱http://ip.junkcode.net/help (英文) \n\n 26 | 27 | 它仍然沒有連接!\n 28 | \u00A0\u00A0 你絕對沒有訪問 http://ip.junkcode.net/help (英文), 沒錯吧? 29 | \n 30 | 31 | 32 | 額外內容 33 | 34 | 我已捐款,我的激活碼在哪裡?\n 35 | \u00A0\u00A0 捐贈後幾分鐘內,您應該收到電子郵件的代碼,如果沒有的話請聯繫 support@junkcode.net (請使用英文) \n\n 36 | 37 | 我輸入了代碼,但沒有解鎖\n 38 | \u00A0\u00A0 請嘗試重啟應用 \n\n 39 | 40 | 41 | 應用程序改進 42 | " 43 | 我不喜歡其中的部分內容\n 44 | \u00A0\u00A0 請讓我們知道! - https://github.com/JunkCode/wtTactMap (English Only) \n\n 45 | 46 | 我發現了個BUG\n 47 | \u00A0\u00A0 請在此發表 http://github.com/JunkCode/wtTactMap/issues?state=open (大陸部分地區可能無法訪問[我知道你在港澳台],需註冊賬號) \n\n 48 | 49 | 我有個新功能想法!\n 50 | \u00A0\u00A0 請讓我們知道! - https://github.com/JunkCode/wtTactMap (English Only) \n\n 51 | 52 | 我想幫助 翻譯程序/設計圖標/...\n 53 | \u00A0\u00A0 一些資源已經在這裡 http://github.com/JunkCode/wtTactMap 您可以提出修改或添加新事物。 如果您有任何問題或其他想法請讓我們知道 - https://github.com/JunkCode/wtTactMap (English only) \n\n 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /translations/values-zh/help.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 地图控制 5 | 6 | 1 自由模式\n 7 | 2 跟随飞机\n 8 | 3 视角旋转锁\n 9 | 4 点击重置\n 10 | 11 | 12 | 预测 13 | 14 | 预测飞机10.30.90s后的位置 (基于当前速度和方向) 15 | 16 | 17 | 常见问题 18 | 19 | 连接 20 | 21 | 我怎样连接?\n 22 | \u00A0\u00A0 该应用程序需要获得运行War Thunder的计算机的IP地址,如何获取IP,请访问http://ip.junkcode.net (英文) \n\n 23 | 24 | 我输入了IP但它仍然提示 \"无连接\"\n 25 | \u00A0\u00A0 您的本地网络路由可能有问题,请参阅http://ip.junkcode.net/help (英文) \n\n 26 | 27 | 它仍然没有连接!\n 28 | \u00A0\u00A0 你绝对没有访问 http://ip.junkcode.net/help (英文), 没错吧? 29 | \n 30 | 31 | 32 | 额外内容 33 | 34 | 我已捐款,我的激活码在哪里?\n 35 | \u00A0\u00A0 捐赠后几分钟内,您应该收到电子邮件的代码,如果没有的话请联系 support@junkcode.net (请使用英文) \n\n 36 | 37 | 我输入了代码,但没有解锁\n 38 | \u00A0\u00A0 请尝试重启应用 \n\n 39 | 40 | 41 | 应用程序改进 42 | " 43 | 我不喜欢其中的部分内容\n 44 | \u00A0\u00A0 请让我们知道! - https://github.com/JunkCode/wtTactMap (English Only) \n\n 45 | 46 | 我发现了个BUG\n 47 | \u00A0\u00A0 请在此发表 http://github.com/JunkCode/wtTactMap/issues?state=open (大陆部分地区可能无法访问,需注册账号) \n\n 48 | 49 | 我有个新功能想法!\n 50 | \u00A0\u00A0 请让我们知道! - https://github.com/JunkCode/wtTactMap (English Only) \n\n 51 | 52 | 我想帮助 翻译程序/设计图标/...\n 53 | \u00A0\u00A0 一些资源已经在这里 http://github.com/JunkCode/wtTactMap 您可以提出修改或添加新事物。 如果您有任何问题或其他想法请让我们知道 - https://github.com/JunkCode/wtTactMap (English only) \n\n 54 | 55 | 56 | 57 | 58 | --------------------------------------------------------------------------------