mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Merge branch 'master' of https://github.com/acemod/ACE3
This commit is contained in:
commit
b318d2cced
@ -31,7 +31,6 @@ The mod is **built modularly** — almost any PBO can be removed, thus a team ca
|
||||
* Realistic names for vehicles and weapons
|
||||
* Realistic ballistics including wind and humidity
|
||||
* Backblast simulation
|
||||
* Weapon resting and bipod deployment
|
||||
* A fire control system for armored vehicles and helicopters
|
||||
***and more...***
|
||||
|
||||
|
@ -903,7 +903,7 @@ class Heli_Attack_01_base_F: Helicopter_Base_F {
|
||||
initFov = 0.466;
|
||||
minFov = 0.466;
|
||||
maxFov = 0.466;
|
||||
visionMode[] = {"Normal","NVG","Ti"};
|
||||
visionMode[] = {"Normal","Ti"};
|
||||
thermalMode[] = {0,1};
|
||||
gunnerOpticsColor[] = {0,0,0,1};
|
||||
directionStabilized = 1;
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-01-31 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Attach">
|
||||
<Key ID="STR_ACE_Attach_AttachDetach">
|
||||
@ -171,9 +171,9 @@
|
||||
<Key ID="STR_ACE_Attach_Failed">
|
||||
<English>Attach Failed</English>
|
||||
<French>Échec du Attacher</French>
|
||||
<German>Befestigen Fehlgeschlagen</German>
|
||||
<German>Befestigen fehlgeschlagen</German>
|
||||
<Russian>Присоединить Ошибка</Russian>
|
||||
<Spanish>Error en Acoplar</Spanish>
|
||||
<Spanish>Error al acoplar</Spanish>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
||||
|
@ -38,7 +38,7 @@ if (local _logic) then {
|
||||
["STR_ACE_Captives_Zeus_OnlyAlive"] call EFUNC(common,displayTextStructured);
|
||||
};
|
||||
} else {
|
||||
["STR_ACE_Captives_Zeus_OnlyInfentry"] call EFUNC(common,displayTextStructured);
|
||||
["STR_ACE_Captives_Zeus_OnlyInfantry"] call EFUNC(common,displayTextStructured);
|
||||
};
|
||||
} else {
|
||||
["STR_ACE_Captives_Zeus_NothingSelected"] call EFUNC(common,displayTextStructured);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-02-24 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Captives">
|
||||
<Key ID="STR_ACE_Captives_SetCaptive">
|
||||
@ -52,7 +52,7 @@
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Captives_NoCaptive">
|
||||
<English>You need to take him as prisoner first!</English>
|
||||
<German>Du must ihn zuerst gefangen nehmen.</German>
|
||||
<German>Du musst ihn zuerst gefangen nehmen.</German>
|
||||
<Spanish>Necesitas hacerle prisionero primero!</Spanish>
|
||||
<Polish>Najpierw musisz wziąć go jako więźnia!</Polish>
|
||||
<French>Vous devez d'abord le capturer!</French>
|
||||
@ -132,18 +132,28 @@
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Captives_StartSurrendering">
|
||||
<English>Surrender</English>
|
||||
<German>Kapitulieren</German>
|
||||
<Spanish>Rendirse</Spanish>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Captives_StopSurrendering">
|
||||
<English>Stop Surrendering</English>
|
||||
<German>Den Kampf erneut aufnehmen</German>
|
||||
<Spanish>Dejar de rendirse</Spanish>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Captives_Zeus_OnlyAlive">
|
||||
<English>Only use on alive units</English>
|
||||
<German>Nur bei lebenden Einheiten verwendbar</German>
|
||||
<Spanish>Utilizar solo en unidades vivas</Spanish>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Captives_Zeus_OnlyInfentry">
|
||||
<Key ID="STR_ACE_Captives_Zeus_OnlyInfantry">
|
||||
<English>Only use on dismounted inf</English>
|
||||
<German>Nur bei abgesessener Infanterie verwendbar</German>
|
||||
<Spanish>Utilizar solo en infanteria desmontada</Spanish>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Captives_Zeus_NothingSelected">
|
||||
<English>Nothing under mouse</English>
|
||||
<German>Es wurde nichts ausgewählt</German>
|
||||
<Spanish>Nada bajo el ratón</Spanish>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
||||
</Project>
|
||||
|
@ -16,8 +16,10 @@ private ["_vehicle", "_weapon"];
|
||||
_vehicle = _this select 0;
|
||||
_weapon = _this select 1;
|
||||
|
||||
if (gunner _vehicle == _vehicle && {_weapon in weapons _vehicle}) exitWith {gunner _vehicle};
|
||||
// on foot
|
||||
if (gunner _vehicle == _vehicle && {_weapon in weapons _vehicle || {toLower _weapon in ["throw", "put"]}}) exitWith {gunner _vehicle};
|
||||
|
||||
// inside vehicle
|
||||
private "_gunner";
|
||||
_gunner = objNull;
|
||||
|
||||
@ -27,4 +29,9 @@ _gunner = objNull;
|
||||
};
|
||||
} forEach allTurrets [_vehicle, true];
|
||||
|
||||
// ensure that at least the pilot is returned if there is no gunner
|
||||
if (isManualFire _vehicle && {isNull _gunner}) then {
|
||||
_gunner = driver _vehicle;
|
||||
};
|
||||
|
||||
_gunner
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-04-06 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Common">
|
||||
<Key ID="STR_ACE_Common_ACETeam">
|
||||
@ -299,51 +299,65 @@
|
||||
<Polish>Akceptuj prośby</Polish>
|
||||
<Spanish>Aceptar Peticiones</Spanish>
|
||||
<English>Accept Requests</English>
|
||||
<German>Anfrage annehmen</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_ACTION_DECLINE_REQUEST_KEY_TITLE">
|
||||
<Polish>Ignoruj prośby</Polish>
|
||||
<Spanish>Rechazar Peticiones</Spanish>
|
||||
<English>Decline Requests</English>
|
||||
<German>Anfrage ablehnen</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_ACTION_ACCEPT_REQUEST_KEY_TOOLTIP">
|
||||
<Polish>Akceptuj prośby wysłane przez innych graczy. Akceptacji wymagają między innymi akcje używania / współdzielenia wyposażenia, wykonywania określonych czynności.</Polish>
|
||||
<Spanish>Acepta Peticiones de otros jugadores. Pueden ser solicitudes para usar / compartir equipamiento, realizar ciertas acciones.</Spanish>
|
||||
<English>Accept Requests send by other players. These can be requests to use / share equipment, perform certain actions.</English>
|
||||
<German>Anfragen anderer Spieler annehmen. Diese Anfragen können sich auf das Benutzen / Teilen von Equipment beziehen oder das Ausführen bestimmter Aktionen.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_ACTION_DECLINE_REQUEST_KEY_TOOLTIP">
|
||||
<Polish>Ignoruj prośby wysłane przez innych graczy. Akceptacji wymagają między innymi akcje używania / współdzielenia wyposażenia, wykonywania określonych czynności.</Polish>
|
||||
<Spanish>Rechazar Peticiones de otros jugadores. Pueden ser solicitudes para usar / compartir equipamiento, realizar ciertas acciones.</Spanish>
|
||||
<English>Decline Requests send by other players. These can be requests to use / share equipment, perform certain actions.</English>
|
||||
<German>Anfragen anderer Spieler ablehnen. Diese Anfragen können sich auf das Benutzen / Teilen von Equipment beziehen oder das Ausführen bestimmter Aktionen.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingFeedbackIconsName">
|
||||
<English>Feedback icons</English>
|
||||
<German>Feedback-Icons</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingFeedbackIconsDesc">
|
||||
<English>Select the position of or disable the feedback icons on your screen. These icons will show to provide extra feedback on your character status and actions performed.</English>
|
||||
<German>Wähle die Position der Feedback-Icons aus oder deaktiviere Sie. Die Feedback-Icons zeigen den Status deiner Einheit an, oder die ausgeführte Aktion.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingProgressbarLocationName">
|
||||
<English>Progress bar location</English>
|
||||
<German>Position des Fortschrittsanzeige</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingProgressbarLocationDesc">
|
||||
<English>Set the desired location of the progress bar on your screen.</English>
|
||||
<German>Wähle die Position der Fortschrittsanzeige.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingDisplayTextColorName">
|
||||
<English>Hint Background color</English>
|
||||
<German>Hinweis Hintergrundfarbe</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingDisplayTextColorDesc">
|
||||
<English>The color of the background from the ACE hints.</English>
|
||||
<German>Wähle die Hintergrundfarbe für ACE-Hinweise.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingDisplayTextFontColorName">
|
||||
<English>Hint text font color</English>
|
||||
<German>Hinweis Textfarbe</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_SettingDisplayTextFontColorDesc">
|
||||
<English>The color of the text font from the ACE hints. This color is the default color for all text displayed through the ACE Hint system, if the hint text has no other color specified.</English>
|
||||
<German>Wähle die Textfarbe für ACE-Hinweise. </German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_bananaDisplayName">
|
||||
<English>Banana</English>
|
||||
<German>Banane</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Common_bananaDescr">
|
||||
<English>A banana is an edible fruit, botanically a berry, produced by several kinds of large herbaceous flowering plants in the genus Musa.</English>
|
||||
<German>Die Bananen (Musa) sind eine Pflanzengattung in der Familie der Bananengewächse (Musaceae) innerhalb der Einkeimblättrigen Pflanzen (Monokotyledonen).</German>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
@ -29,6 +29,7 @@
|
||||
<Key ID="STR_ACE_Dragging_UnableToDrag">
|
||||
<English>Item to heavy</English>
|
||||
<German>Gegenstand zu schwer</German>
|
||||
<Spanish>Articulo demasiado pesado</Spanish>
|
||||
<!-- <English>Unable to drag item due to weight</English>
|
||||
<Russian>Слишком тяжелый предмет</Russian>
|
||||
<Spanish>No se puede arrastrar el objeto debido a su peso</Spanish>
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
#include "script_component.hpp"
|
||||
private ["_result", "_item", "_children"];
|
||||
call EFUNC(interaction,hideMenu);
|
||||
|
||||
EXPLODE_2_PVT(_this,_unit,_detonator);
|
||||
_range = GetNumber (ConfigFile >> "CfgWeapons" >> _detonator >> "ACE_Range");
|
||||
|
||||
|
@ -17,8 +17,7 @@
|
||||
*/
|
||||
#include "script_component.hpp"
|
||||
private ["_config"];
|
||||
closeDialog 0;
|
||||
call EFUNC(interaction,hideMenu);
|
||||
|
||||
EXPLODE_3_PVT(_this,_explosive,_magazine,_trigger);
|
||||
_config = ConfigFile >> "CfgACE_Triggers" >> _trigger;
|
||||
|
||||
|
@ -1,497 +1,498 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2014-12-16 -->
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Explosives">
|
||||
<Key ID="STR_ACE_Explosives_Menu">
|
||||
<English>Explosives</English>
|
||||
<German>Sprengstoffe</German>
|
||||
<Spanish>Explosivos</Spanish>
|
||||
<Polish>Ładunki wybuchowe</Polish>
|
||||
<French>Explosifs</French>
|
||||
<Czech>Výbušniny</Czech>
|
||||
<Italian>Esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok</Hungarian>
|
||||
<Portuguese>Explosivos</Portuguese>
|
||||
<Russian>Взрывчатка</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Place">
|
||||
<English>Place >></English>
|
||||
<German>Platzieren >></German>
|
||||
<Spanish>Colocar >></Spanish>
|
||||
<Polish>Umieść >></Polish>
|
||||
<French>Placer >></French>
|
||||
<Czech>Položit >></Czech>
|
||||
<Italian>Piazza >></Italian>
|
||||
<Hungarian>Lerakás >></Hungarian>
|
||||
<Portuguese>Colocar >></Portuguese>
|
||||
<Russian>Установить >></Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Detonate">
|
||||
<English>Detonate >></English>
|
||||
<German>Zünden >></German>
|
||||
<Spanish>Detonar >></Spanish>
|
||||
<Polish>Detonuj >></Polish>
|
||||
<French>Mise à feu >></French>
|
||||
<Czech>Odpálit >></Czech>
|
||||
<Italian>Detona >></Italian>
|
||||
<Hungarian>Robbantás >></Hungarian>
|
||||
<Portuguese>Detonar >></Portuguese>
|
||||
<Russian>Подрыв >></Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DetonateCode">
|
||||
<English>Explosive code: %1</English>
|
||||
<German>Sprengstoffcode: %1</German>
|
||||
<Spanish>Código del explosivo: %1</Spanish>
|
||||
<Polish>Kod ładunku: %1</Polish>
|
||||
<French>Code explosif: %1</French>
|
||||
<Czech>Kód výbušniny: %1</Czech>
|
||||
<Italian>Codice dell'esplosivo : %1</Italian>
|
||||
<Hungarian>Robbanóanyag kódja: %1</Hungarian>
|
||||
<Portuguese>Código do explosivo: %1</Portuguese>
|
||||
<Russian>Взрывная код: %1</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_PlaceAction">
|
||||
<English>Place</English>
|
||||
<German>Platzieren</German>
|
||||
<Spanish>Colocar</Spanish>
|
||||
<Polish>Umieść</Polish>
|
||||
<French>Placer</French>
|
||||
<Czech>Položit</Czech>
|
||||
<Italian>Piazza</Italian>
|
||||
<Hungarian>Elhelyezés</Hungarian>
|
||||
<Portuguese>Colocar</Portuguese>
|
||||
<Russian>Положить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_CancelAction">
|
||||
<English>Cancel</English>
|
||||
<German>Abbrechen</German>
|
||||
<Spanish>Cancelar</Spanish>
|
||||
<Polish>Anuluj</Polish>
|
||||
<French>Annuler</French>
|
||||
<Czech>Zrušit</Czech>
|
||||
<Italian>Annulla</Italian>
|
||||
<Hungarian>Mégsem</Hungarian>
|
||||
<Portuguese>Cancelar</Portuguese>
|
||||
<Russian>Отмена</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_ScrollAction">
|
||||
<English>+ Modifier, rotates</English>
|
||||
<German>+ Modifikator, drehen</German>
|
||||
<Spanish>+ Modificador, girar</Spanish>
|
||||
<French>+ Modificateur, tourner</French>
|
||||
<Italian>+ Modificatore, rotazione</Italian>
|
||||
<Czech>+ Otočit</Czech>
|
||||
<Hungarian>+ Változtatás, forgatás</Hungarian>
|
||||
<Polish>+ modyfikator, obracanie</Polish>
|
||||
<Portuguese>+ Modificador, rotaciona</Portuguese>
|
||||
<Russian>+ Bращать</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Jammer_TurnOn">
|
||||
<English>Turn On Thor III</English>
|
||||
<German>Thor III aktivieren</German>
|
||||
<Spanish>Encender Thor III</Spanish>
|
||||
<Polish>Włącz Thor III</Polish>
|
||||
<French>Allumer Thor III</French>
|
||||
<Czech>Zapnout Thor III</Czech>
|
||||
<Italian>Accendi Thor III</Italian>
|
||||
<Hungarian>Thor III bekapcsolása</Hungarian>
|
||||
<Portuguese>Ativar Thor III</Portuguese>
|
||||
<Russian>Активировать Thor III</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Jammer_TurnOff">
|
||||
<English>Turn Off Thor III</English>
|
||||
<German>Thor III deaktivieren</German>
|
||||
<Spanish>Apagar Thor III</Spanish>
|
||||
<Polish>Wyłącz Thor III</Polish>
|
||||
<French>Éteindre Thor III</French>
|
||||
<Czech>Vypnout Thor III</Czech>
|
||||
<Italian>Spegni Thor III</Italian>
|
||||
<Hungarian>Thor III kikapcsolása</Hungarian>
|
||||
<Portuguese>Desativar Thor III</Portuguese>
|
||||
<Russian>Деактивировать Thor III</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_cellphone_displayName">
|
||||
<English>Cellphone</English>
|
||||
<German>Mobiltelefon</German>
|
||||
<Spanish>Télefono móvil</Spanish>
|
||||
<Polish>Telefon komórkowy</Polish>
|
||||
<French>Téléphone Portable</French>
|
||||
<Czech>Telefon</Czech>
|
||||
<Italian>Cellulare</Italian>
|
||||
<Hungarian>Mobil</Hungarian>
|
||||
<Portuguese>Celular</Portuguese>
|
||||
<Russian>Сотовый телефон</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_cellphone_description">
|
||||
<English>Used to remotely trigger explosives</English>
|
||||
<German>Wird benutzt um Sprengstoffe fernzuzünden</German>
|
||||
<Spanish>Usado para detonar remotamente explosivos</Spanish>
|
||||
<Polish>Używany do zdalnego detonowania ładunków wybuchowych</Polish>
|
||||
<French>Utilisé pour déclencher des explosifs à distance</French>
|
||||
<Czech>Používaný ke vzdálenému odpalování výbušnin</Czech>
|
||||
<Italian>Usato per l'attivazione a distanza degli esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok távoli robbantásához</Hungarian>
|
||||
<Portuguese>Usado para acionar explosivos remotamente</Portuguese>
|
||||
<Russian>Используется для удаленного запуска взрывчатку</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_clacker_displayName">
|
||||
<English>M57 Firing Device</English>
|
||||
<German>M57 Zündvorrichtung</German>
|
||||
<Spanish>Dispositivo de detonación M57</Spanish>
|
||||
<Polish>Zapalnik M57</Polish>
|
||||
<French>M57 Dispositif de mise à feu</French>
|
||||
<Czech>M57 Odpalovací Zařízení</Czech>
|
||||
<Italian>Detonatore M57</Italian>
|
||||
<Hungarian>M57 Detonátor</Hungarian>
|
||||
<Portuguese>M57 Dispositivo de Detonação</Portuguese>
|
||||
<Russian>Взрыватель M57</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_clacker_description">
|
||||
<English>Used to remotely trigger explosives</English>
|
||||
<German>Wird benutzt um Sprengstoffe fernzuzünden</German>
|
||||
<Spanish>Usado para detonar remotamente explosivos</Spanish>
|
||||
<Polish>Używany do zdalnego detonowania ładunków wybuchowych</Polish>
|
||||
<French>Utilisé pour déclencher des explosifs à distance</French>
|
||||
<Czech>Použévané ke vzdálenému odpalování výbušnin</Czech>
|
||||
<Italian>Usato per l'attivazione a distanza degli esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok távoli robbantásához</Hungarian>
|
||||
<Portuguese>Usado para acionar explosivos remotamente</Portuguese>
|
||||
<Russian>Используется для удаленного запуска взрывчатку</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_M26_displayName">
|
||||
<English>M26 Firing Device</English>
|
||||
<German>M26 Zündvorrichtung</German>
|
||||
<Spanish>Dispositivo de detonación MK26</Spanish>
|
||||
<Polish>Zapalnik M26</Polish>
|
||||
<French>M26 Dispositif de mise à feu</French>
|
||||
<Czech>M26 Odpalovací Zařízení</Czech>
|
||||
<Italian>Detonatore M26</Italian>
|
||||
<Hungarian>M26 Detonátor</Hungarian>
|
||||
<Portuguese>M26 Dispositivo de Detonação</Portuguese>
|
||||
<Russian>Взрыватель M26</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_MK16_displayName">
|
||||
<English>M152 RAMS</English>
|
||||
<German>M152 RAMS</German>
|
||||
<Czech>M152 RAMS</Czech>
|
||||
<French>M152 RAMS</French>
|
||||
<Hungarian>M152 RAMS</Hungarian>
|
||||
<Polish>M152 RAMS</Polish>
|
||||
<Portuguese>M152 RAMS</Portuguese>
|
||||
<Russian>M152 RAMS</Russian>
|
||||
<Spanish>M152 RAMS</Spanish>
|
||||
<Italian>M152 RAMS</Italian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DefusalKit_displayName">
|
||||
<English>Defusal Kit</English>
|
||||
<German>Entschärfungskit</German>
|
||||
<Spanish>Kit de desactivación</Spanish>
|
||||
<Polish>Zestaw do rozbrajania</Polish>
|
||||
<French>Kit de désamorçage</French>
|
||||
<Czech>Zneškodňovací sada</Czech>
|
||||
<Italian>Kit E.O.D.</Italian>
|
||||
<Hungarian>Hatástalanító felszerelés</Hungarian>
|
||||
<Portuguese>Kit de desarme</Portuguese>
|
||||
<Russian>Разминирование комплект</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DefusalKit_description">
|
||||
<English>Allows defusing of explosives</English>
|
||||
<German>Erlaubt die Entschärfung von Sprengstoffen</German>
|
||||
<Spanish>Permite desactivar explosivos</Spanish>
|
||||
<Polish>Umożliwia rozbrajanie ładunków wybuchowych</Polish>
|
||||
<French>Permet de désamorçer des explosifs</French>
|
||||
<Czech>Dovoluje zneškodňování výbušnin</Czech>
|
||||
<Italian>Consente la disattivazione degli ordigni esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok hatástalanításához</Hungarian>
|
||||
<Portuguese>Permite o desarme de explosivos</Portuguese>
|
||||
<Russian>Allows defusing of explosives</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_AddToSpeedDial">
|
||||
<English>Add to Speed Dial</English>
|
||||
<German>Zur Schnellauswahl hinzufügen</German>
|
||||
<Spanish>Agregar a marcado rápido</Spanish>
|
||||
<Polish>Dodaj do szybkiego wybierania</Polish>
|
||||
<French>Ajouter à la composition rapide</French>
|
||||
<Czech>Přidat jako rychlou volbu</Czech>
|
||||
<Italian>Aggiungi alla selezione rapida</Italian>
|
||||
<Hungarian>Hozzáadás gyorshíváshoz</Hungarian>
|
||||
<Portuguese>Adicionar à ligação rápida</Portuguese>
|
||||
<Russian>Добавить в ускоренный набор</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Clear">
|
||||
<English>Clear</English>
|
||||
<German>Löschen</German>
|
||||
<Spanish>Borrar</Spanish>
|
||||
<Polish>Usuń</Polish>
|
||||
<French>Désamorçé</French>
|
||||
<Czech>Čistý</Czech>
|
||||
<Italian>Libera</Italian>
|
||||
<Hungarian>Törlés</Hungarian>
|
||||
<Portuguese>Limpar</Portuguese>
|
||||
<Russian>Pассеиваться</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_Dial">
|
||||
<English>Dial</English>
|
||||
<German>Wählen</German>
|
||||
<Spanish>Marcar</Spanish>
|
||||
<Polish>Wybierz mumer</Polish>
|
||||
<French>Composer</French>
|
||||
<Czech>Vytočit</Czech>
|
||||
<Italian>Composizione numero</Italian>
|
||||
<Hungarian>Tárcsázás</Hungarian>
|
||||
<Portuguese>Discar</Portuguese>
|
||||
<Russian>Hабрать</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_Up">
|
||||
<English>Up</English>
|
||||
<German>Hoch</German>
|
||||
<Spanish>Arriba</Spanish>
|
||||
<Polish>W górę</Polish>
|
||||
<French>Haut</French>
|
||||
<Czech>Nahoru</Czech>
|
||||
<Italian>Sopra</Italian>
|
||||
<Hungarian>Fel</Hungarian>
|
||||
<Portuguese>Cima</Portuguese>
|
||||
<Russian>Поднять</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_Down">
|
||||
<English>Down</English>
|
||||
<German>Runter</German>
|
||||
<Spanish>Abajo</Spanish>
|
||||
<Polish>W dół</Polish>
|
||||
<French>Bas</French>
|
||||
<Czech>Dolu</Czech>
|
||||
<Italian>Sotto</Italian>
|
||||
<Hungarian>Le</Hungarian>
|
||||
<Portuguese>Baixo</Portuguese>
|
||||
<Russian>Опустить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Cancel">
|
||||
<English>Cancel</English>
|
||||
<German>Abbrechen</German>
|
||||
<Spanish>Cancelar</Spanish>
|
||||
<Polish>Anuluj</Polish>
|
||||
<French>Annuler</French>
|
||||
<Czech>Zrušit</Czech>
|
||||
<Italian>Annulla</Italian>
|
||||
<Hungarian>Mégsem</Hungarian>
|
||||
<Portuguese>Cancelar</Portuguese>
|
||||
<Russian>Отмена</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DetonateMenu">
|
||||
<English>Detonate Menu</English>
|
||||
<German>"Zünden"-Menü</German>
|
||||
<Spanish>Menú de detonación</Spanish>
|
||||
<Polish>Menu detonowania</Polish>
|
||||
<French>Menu de mise à feu</French>
|
||||
<Czech>Menu Detonace</Czech>
|
||||
<Italian>Menù di detonazione</Italian>
|
||||
<Hungarian>Robbantás menü</Hungarian>
|
||||
<Portuguese>Menu de detonação</Portuguese>
|
||||
<Russian>Меню Подрыв</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_PlaceMenu">
|
||||
<English>Place Menu</English>
|
||||
<German>"Platzieren"-Menü</German>
|
||||
<Spanish>Menú de colocación</Spanish>
|
||||
<Polish>Menu umieszczania</Polish>
|
||||
<French>Menu Placement</French>
|
||||
<Czech>Menu Umístění</Czech>
|
||||
<Italian>Menù di collocamento</Italian>
|
||||
<Hungarian>Lerakás menü</Hungarian>
|
||||
<Portuguese>Menu de posicionamento</Portuguese>
|
||||
<Russian>Меню Установить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Defuse">
|
||||
<English>Defuse</English>
|
||||
<German>Entschärfen</German>
|
||||
<Spanish>Desactivar</Spanish>
|
||||
<Polish>Rozbrój</Polish>
|
||||
<French>Désamorçer</French>
|
||||
<Czech>Zneškodnit</Czech>
|
||||
<Italian>Disinnesca</Italian>
|
||||
<Hungarian>Hatástalanítás</Hungarian>
|
||||
<Portuguese>Desarmar</Portuguese>
|
||||
<Russian>Обезвредить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DefusingExplosive">
|
||||
<English>Defusing Explosive...</English>
|
||||
<German>Entschärfe Sprengstoff...</German>
|
||||
<Spanish>Desactivando explosivo...</Spanish>
|
||||
<Polish>Rozbrajanie ładunku...</Polish>
|
||||
<French>Désamorçage des explosifs...</French>
|
||||
<Czech>Zneškodňuji Výbušninu...</Czech>
|
||||
<Italian>Esposivo in fase di disattivazione...</Italian>
|
||||
<Hungarian>Robbanóanyag hatástalaníása...</Hungarian>
|
||||
<Portuguese>Desarmando Explosivo...</Portuguese>
|
||||
<Russian>Обезвреживание...</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_timerName">
|
||||
<English>Timer</English>
|
||||
<German>Zeitzünder</German>
|
||||
<Spanish>Temporizador</Spanish>
|
||||
<Polish>Czasomierz</Polish>
|
||||
<French>Retard</French>
|
||||
<Czech>Časovač</Czech>
|
||||
<Italian>Cronometro</Italian>
|
||||
<Hungarian>Időzített</Hungarian>
|
||||
<Portuguese>Timer</Portuguese>
|
||||
<Russian>Временной</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_TimerMenu">
|
||||
<English>Time: %1m %2s</English>
|
||||
<German>Zeit: %1m %2s</German>
|
||||
<Spanish>Tiempo: %1m %2s</Spanish>
|
||||
<Polish>Czas: %1m %2s</Polish>
|
||||
<French>Temps : %1m %2s</French>
|
||||
<Czech>Čas: %1m %2s</Czech>
|
||||
<Italian>Tempo : %1m %2s</Italian>
|
||||
<Hungarian>Idő: %1m %2s</Hungarian>
|
||||
<Portuguese>Tempo: %1m %2s</Portuguese>
|
||||
<Russian>Tемп: %1m %2c</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SetTime">
|
||||
<English>Set Time</English>
|
||||
<German>Zeit einstellen</German>
|
||||
<Spanish>Configurar tiempo</Spanish>
|
||||
<Polish>Ustaw czas</Polish>
|
||||
<French>Régler retard</French>
|
||||
<Czech>Nastavit Čas</Czech>
|
||||
<Italian>Modifica il conto alla rovescia</Italian>
|
||||
<Hungarian>Idő állítása</Hungarian>
|
||||
<Portuguese>Configurar Tempo</Portuguese>
|
||||
<Russian>Xронометр</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_TriggerMenu">
|
||||
<English>Select a Trigger</English>
|
||||
<German>Wähle einen Zünder</German>
|
||||
<Spanish>Seleccionar un disparador</Spanish>
|
||||
<Polish>Wybierz zapalnik</Polish>
|
||||
<French>Sélectionner une mise à feu</French>
|
||||
<Czech>Zvolit Detonátor</Czech>
|
||||
<Italian>Seleziona un Attivatore</Italian>
|
||||
<Hungarian>Detonátor kiválasztása</Hungarian>
|
||||
<Portuguese>Selecionar um Gatilho</Portuguese>
|
||||
<Russian>Выберите</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SelectTrigger">
|
||||
<English>Select</English>
|
||||
<German>Wählen</German>
|
||||
<Spanish>Seleccionar</Spanish>
|
||||
<Polish>Wybierz</Polish>
|
||||
<French>Sélectionner</French>
|
||||
<Czech>Zvolit</Czech>
|
||||
<Italian>Seleziona</Italian>
|
||||
<Hungarian>Kiválasztás</Hungarian>
|
||||
<Portuguese>Selecionar</Portuguese>
|
||||
<Russian>Выбрать защелка</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_PressurePlate">
|
||||
<English>Pressure Plate</English>
|
||||
<Polish>Płyta naciskowa</Polish>
|
||||
<Spanish>Placa de presión</Spanish>
|
||||
<German>Druckplatte</German>
|
||||
<French>Plaque de pression</French>
|
||||
<Czech>Nášlapná nástraha</Czech>
|
||||
<Italian>Piastra a Pressione</Italian>
|
||||
<Hungarian>Nyomólap</Hungarian>
|
||||
<Portuguese>Placa de pressão</Portuguese>
|
||||
<Russian>Давление</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_TripWire">
|
||||
<English>Tripwire</English>
|
||||
<Polish>Linka naciągu</Polish>
|
||||
<Spanish>Cable trampa</Spanish>
|
||||
<German>Stolperdraht</German>
|
||||
<French>Fil de butée</French>
|
||||
<Czech>Nástražný drát</Czech>
|
||||
<Italian>Filo a Inciampo</Italian>
|
||||
<Hungarian>Botlódrót</Hungarian>
|
||||
<Portuguese>Linha de tração</Portuguese>
|
||||
<Russian>Натяжной</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_IRSensor">
|
||||
<English>IR Sensor</English>
|
||||
<Polish>Czujnik podczerwieni</Polish>
|
||||
<Spanish>Sensor IR</Spanish>
|
||||
<German>Infrarotsensor</German>
|
||||
<French>Capteur IR</French>
|
||||
<Czech>IR Značkovač</Czech>
|
||||
<Italian>Sensore IR</Italian>
|
||||
<Hungarian>IR szenzor</Hungarian>
|
||||
<Portuguese>Sensor IV</Portuguese>
|
||||
<Russian>ИК</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_NoTriggersAvailable">
|
||||
<English>No triggers available for %1</English>
|
||||
<Polish>Brak dostępnych zapalników dla %1</Polish>
|
||||
<Spanish>No hay detonadores disponibles para %1</Spanish>
|
||||
<German>Keine Auslöser vorhanden für %1</German>
|
||||
<French>Pas de mise à feu disponible pour %1</French>
|
||||
<Czech>Žádný detonátor k dispozici pro %1</Czech>
|
||||
<Italian>Nessun attivatore disponibile per %1</Italian>
|
||||
<Hungarian>Nincs detonátor a %1</Hungarian>
|
||||
<Portuguese>Nenhum gatilho disponível para %1</Portuguese>
|
||||
<Russian>Нет защелка доступны для %1</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SLAME_IRSensor">
|
||||
<English>IR Sensor (Side Attack)</English>
|
||||
<Polish>Czujnik podczerwieni (wybuch na bok)</Polish>
|
||||
<Spanish>Sensor IR (ataque lateral)</Spanish>
|
||||
<German>Infrarotsensor (Seitenangriff)</German>
|
||||
<French>Capteur IR (de flanc)</French>
|
||||
<Czech>IR Značkovač (Výbuch stranou)</Czech>
|
||||
<Italian>Sensore IR (Attacco laterale)</Italian>
|
||||
<Hungarian>IR Sensor (Side Attack)</Hungarian>
|
||||
<Portuguese>Sensor infravermelho (ataque lateral)</Portuguese>
|
||||
<Russian>ИК (боковая атака)</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SLAME_Magnetic">
|
||||
<English>Magnetic Influence Sensor (Bottom Attack)</English>
|
||||
<Polish>Czujnik magnetyczny (wybuch w górę)</Polish>
|
||||
<Spanish>Sensor IM (ataque inferior)</Spanish>
|
||||
<German>Magnetfeldsensor (Bodenangriff)</German>
|
||||
<French>Capteur Magnétique (par le bas)</French>
|
||||
<Czech>Magnetický Senzor (Výbuch ze spoda)</Czech>
|
||||
<Italian>Sensore Magnetico di Prossimità (Attacco inferiore)</Italian>
|
||||
<Hungarian>Mágneses (Bottom Attack)</Hungarian>
|
||||
<Portuguese>Influência magnética (ataque inferior)</Portuguese>
|
||||
<Russian>Магнитный (дно атака)</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_NoExplosivesAvailable">
|
||||
<English>No explosives on trigger.</English>
|
||||
<German>Keine Sprengladungen auf diesem Auslöser.</German>
|
||||
<Spanish>Ningún explosivo en el detonador.</Spanish>
|
||||
<French>Pas d'explosif à mettre à feu.</French>
|
||||
<Italian>Nessun esplosivo sul sensore.</Italian>
|
||||
<Czech>Žádná výbušnina k odpálení.</Czech>
|
||||
<Hungarian>Nincs robbanóanyag a detonátorhoz.</Hungarian>
|
||||
<Polish>Brak ładunków na zapalnik.</Polish>
|
||||
<Portuguese>Nenhum explosivo no gatilho.</Portuguese>
|
||||
<Russian>Нет взрывчатки на курок.</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DeadManSwitch_displayName">
|
||||
<English>Dead Man's Switch</English>
|
||||
<German>Totmannschalter</German>
|
||||
<French>Mise à feu par relâchement de pression</French>
|
||||
<Czech>Spínač mrtvého muže</Czech>
|
||||
<Polish>Czuwak</Polish>
|
||||
<Spanish>Detonador de hombre muerto</Spanish>
|
||||
<Hungarian>Dead Man's Switch</Hungarian>
|
||||
<Russian>Кнопка мертвеца</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DeadManSwitch_description">
|
||||
<English>Used to remotely trigger explosives when released.</English>
|
||||
<German>Zündet Sprengladungen wenn losgelassen.</German>
|
||||
<French>Déclenche la mise à feu d'un explosif lorsqu'il est libéré.</French>
|
||||
<Czech>Používaný k vzdálenému odpálení, při uvolnění odpálí výbušniny</Czech>
|
||||
<Polish>Używany w celu zdalnej detonacji ładunków kiedy jego operator zostanie zabity.</Polish>
|
||||
<Spanish>Utilizado para detonar explosivos remotamente al soltarlo.</Spanish>
|
||||
<Hungarian>Robbanóanyagok távoli robbantásához</Hungarian>
|
||||
<Russian>Используется для дистанционного подрыва, после смерти оператора.</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Pickup">
|
||||
<English>Pick up</English>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
||||
<Package name="Explosives">
|
||||
<Key ID="STR_ACE_Explosives_Menu">
|
||||
<English>Explosives</English>
|
||||
<German>Sprengstoffe</German>
|
||||
<Spanish>Explosivos</Spanish>
|
||||
<Polish>Ładunki wybuchowe</Polish>
|
||||
<French>Explosifs</French>
|
||||
<Czech>Výbušniny</Czech>
|
||||
<Italian>Esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok</Hungarian>
|
||||
<Portuguese>Explosivos</Portuguese>
|
||||
<Russian>Взрывчатка</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Place">
|
||||
<English>Place >></English>
|
||||
<German>Platzieren >></German>
|
||||
<Spanish>Colocar >></Spanish>
|
||||
<Polish>Umieść >></Polish>
|
||||
<French>Placer >></French>
|
||||
<Czech>Položit >></Czech>
|
||||
<Italian>Piazza >></Italian>
|
||||
<Hungarian>Lerakás >></Hungarian>
|
||||
<Portuguese>Colocar >></Portuguese>
|
||||
<Russian>Установить >></Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Detonate">
|
||||
<English>Detonate >></English>
|
||||
<German>Zünden >></German>
|
||||
<Spanish>Detonar >></Spanish>
|
||||
<Polish>Detonuj >></Polish>
|
||||
<French>Mise à feu >></French>
|
||||
<Czech>Odpálit >></Czech>
|
||||
<Italian>Detona >></Italian>
|
||||
<Hungarian>Robbantás >></Hungarian>
|
||||
<Portuguese>Detonar >></Portuguese>
|
||||
<Russian>Подрыв >></Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DetonateCode">
|
||||
<English>Explosive code: %1</English>
|
||||
<German>Sprengstoffcode: %1</German>
|
||||
<Spanish>Código del explosivo: %1</Spanish>
|
||||
<Polish>Kod ładunku: %1</Polish>
|
||||
<French>Code explosif: %1</French>
|
||||
<Czech>Kód výbušniny: %1</Czech>
|
||||
<Italian>Codice dell'esplosivo : %1</Italian>
|
||||
<Hungarian>Robbanóanyag kódja: %1</Hungarian>
|
||||
<Portuguese>Código do explosivo: %1</Portuguese>
|
||||
<Russian>Взрывная код: %1</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_PlaceAction">
|
||||
<English>Place</English>
|
||||
<German>Platzieren</German>
|
||||
<Spanish>Colocar</Spanish>
|
||||
<Polish>Umieść</Polish>
|
||||
<French>Placer</French>
|
||||
<Czech>Položit</Czech>
|
||||
<Italian>Piazza</Italian>
|
||||
<Hungarian>Elhelyezés</Hungarian>
|
||||
<Portuguese>Colocar</Portuguese>
|
||||
<Russian>Положить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_CancelAction">
|
||||
<English>Cancel</English>
|
||||
<German>Abbrechen</German>
|
||||
<Spanish>Cancelar</Spanish>
|
||||
<Polish>Anuluj</Polish>
|
||||
<French>Annuler</French>
|
||||
<Czech>Zrušit</Czech>
|
||||
<Italian>Annulla</Italian>
|
||||
<Hungarian>Mégsem</Hungarian>
|
||||
<Portuguese>Cancelar</Portuguese>
|
||||
<Russian>Отмена</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_ScrollAction">
|
||||
<English>+ Modifier, rotates</English>
|
||||
<German>+ Modifikator, drehen</German>
|
||||
<Spanish>+ Modificador, girar</Spanish>
|
||||
<French>+ Modificateur, tourner</French>
|
||||
<Italian>+ Modificatore, rotazione</Italian>
|
||||
<Czech>+ Otočit</Czech>
|
||||
<Hungarian>+ Változtatás, forgatás</Hungarian>
|
||||
<Polish>+ modyfikator, obracanie</Polish>
|
||||
<Portuguese>+ Modificador, rotaciona</Portuguese>
|
||||
<Russian>+ Bращать</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Jammer_TurnOn">
|
||||
<English>Turn On Thor III</English>
|
||||
<German>Thor III aktivieren</German>
|
||||
<Spanish>Encender Thor III</Spanish>
|
||||
<Polish>Włącz Thor III</Polish>
|
||||
<French>Allumer Thor III</French>
|
||||
<Czech>Zapnout Thor III</Czech>
|
||||
<Italian>Accendi Thor III</Italian>
|
||||
<Hungarian>Thor III bekapcsolása</Hungarian>
|
||||
<Portuguese>Ativar Thor III</Portuguese>
|
||||
<Russian>Активировать Thor III</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Jammer_TurnOff">
|
||||
<English>Turn Off Thor III</English>
|
||||
<German>Thor III deaktivieren</German>
|
||||
<Spanish>Apagar Thor III</Spanish>
|
||||
<Polish>Wyłącz Thor III</Polish>
|
||||
<French>Éteindre Thor III</French>
|
||||
<Czech>Vypnout Thor III</Czech>
|
||||
<Italian>Spegni Thor III</Italian>
|
||||
<Hungarian>Thor III kikapcsolása</Hungarian>
|
||||
<Portuguese>Desativar Thor III</Portuguese>
|
||||
<Russian>Деактивировать Thor III</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_cellphone_displayName">
|
||||
<English>Cellphone</English>
|
||||
<German>Mobiltelefon</German>
|
||||
<Spanish>Télefono móvil</Spanish>
|
||||
<Polish>Telefon komórkowy</Polish>
|
||||
<French>Téléphone Portable</French>
|
||||
<Czech>Telefon</Czech>
|
||||
<Italian>Cellulare</Italian>
|
||||
<Hungarian>Mobil</Hungarian>
|
||||
<Portuguese>Celular</Portuguese>
|
||||
<Russian>Сотовый телефон</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_cellphone_description">
|
||||
<English>Used to remotely trigger explosives</English>
|
||||
<German>Wird benutzt um Sprengstoffe fernzuzünden</German>
|
||||
<Spanish>Usado para detonar remotamente explosivos</Spanish>
|
||||
<Polish>Używany do zdalnego detonowania ładunków wybuchowych</Polish>
|
||||
<French>Utilisé pour déclencher des explosifs à distance</French>
|
||||
<Czech>Používaný ke vzdálenému odpalování výbušnin</Czech>
|
||||
<Italian>Usato per l'attivazione a distanza degli esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok távoli robbantásához</Hungarian>
|
||||
<Portuguese>Usado para acionar explosivos remotamente</Portuguese>
|
||||
<Russian>Используется для удаленного запуска взрывчатку</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_clacker_displayName">
|
||||
<English>M57 Firing Device</English>
|
||||
<German>M57 Zündvorrichtung</German>
|
||||
<Spanish>Dispositivo de detonación M57</Spanish>
|
||||
<Polish>Zapalnik M57</Polish>
|
||||
<French>M57 Dispositif de mise à feu</French>
|
||||
<Czech>M57 Odpalovací Zařízení</Czech>
|
||||
<Italian>Detonatore M57</Italian>
|
||||
<Hungarian>M57 Detonátor</Hungarian>
|
||||
<Portuguese>M57 Dispositivo de Detonação</Portuguese>
|
||||
<Russian>Взрыватель M57</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_clacker_description">
|
||||
<English>Used to remotely trigger explosives</English>
|
||||
<German>Wird benutzt um Sprengstoffe fernzuzünden</German>
|
||||
<Spanish>Usado para detonar remotamente explosivos</Spanish>
|
||||
<Polish>Używany do zdalnego detonowania ładunków wybuchowych</Polish>
|
||||
<French>Utilisé pour déclencher des explosifs à distance</French>
|
||||
<Czech>Použévané ke vzdálenému odpalování výbušnin</Czech>
|
||||
<Italian>Usato per l'attivazione a distanza degli esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok távoli robbantásához</Hungarian>
|
||||
<Portuguese>Usado para acionar explosivos remotamente</Portuguese>
|
||||
<Russian>Используется для удаленного запуска взрывчатку</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_M26_displayName">
|
||||
<English>M26 Firing Device</English>
|
||||
<German>M26 Zündvorrichtung</German>
|
||||
<Spanish>Dispositivo de detonación MK26</Spanish>
|
||||
<Polish>Zapalnik M26</Polish>
|
||||
<French>M26 Dispositif de mise à feu</French>
|
||||
<Czech>M26 Odpalovací Zařízení</Czech>
|
||||
<Italian>Detonatore M26</Italian>
|
||||
<Hungarian>M26 Detonátor</Hungarian>
|
||||
<Portuguese>M26 Dispositivo de Detonação</Portuguese>
|
||||
<Russian>Взрыватель M26</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_MK16_displayName">
|
||||
<English>M152 RAMS</English>
|
||||
<German>M152 RAMS</German>
|
||||
<Czech>M152 RAMS</Czech>
|
||||
<French>M152 RAMS</French>
|
||||
<Hungarian>M152 RAMS</Hungarian>
|
||||
<Polish>M152 RAMS</Polish>
|
||||
<Portuguese>M152 RAMS</Portuguese>
|
||||
<Russian>M152 RAMS</Russian>
|
||||
<Spanish>M152 RAMS</Spanish>
|
||||
<Italian>M152 RAMS</Italian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DefusalKit_displayName">
|
||||
<English>Defusal Kit</English>
|
||||
<German>Entschärfungskit</German>
|
||||
<Spanish>Kit de desactivación</Spanish>
|
||||
<Polish>Zestaw do rozbrajania</Polish>
|
||||
<French>Kit de désamorçage</French>
|
||||
<Czech>Zneškodňovací sada</Czech>
|
||||
<Italian>Kit E.O.D.</Italian>
|
||||
<Hungarian>Hatástalanító felszerelés</Hungarian>
|
||||
<Portuguese>Kit de desarme</Portuguese>
|
||||
<Russian>Разминирование комплект</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DefusalKit_description">
|
||||
<English>Allows defusing of explosives</English>
|
||||
<German>Erlaubt die Entschärfung von Sprengstoffen</German>
|
||||
<Spanish>Permite desactivar explosivos</Spanish>
|
||||
<Polish>Umożliwia rozbrajanie ładunków wybuchowych</Polish>
|
||||
<French>Permet de désamorçer des explosifs</French>
|
||||
<Czech>Dovoluje zneškodňování výbušnin</Czech>
|
||||
<Italian>Consente la disattivazione degli ordigni esplosivi</Italian>
|
||||
<Hungarian>Robbanóanyagok hatástalanításához</Hungarian>
|
||||
<Portuguese>Permite o desarme de explosivos</Portuguese>
|
||||
<Russian>Allows defusing of explosives</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_AddToSpeedDial">
|
||||
<English>Add to Speed Dial</English>
|
||||
<German>Zur Schnellauswahl hinzufügen</German>
|
||||
<Spanish>Agregar a marcado rápido</Spanish>
|
||||
<Polish>Dodaj do szybkiego wybierania</Polish>
|
||||
<French>Ajouter à la composition rapide</French>
|
||||
<Czech>Přidat jako rychlou volbu</Czech>
|
||||
<Italian>Aggiungi alla selezione rapida</Italian>
|
||||
<Hungarian>Hozzáadás gyorshíváshoz</Hungarian>
|
||||
<Portuguese>Adicionar à ligação rápida</Portuguese>
|
||||
<Russian>Добавить в ускоренный набор</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Clear">
|
||||
<English>Clear</English>
|
||||
<German>Löschen</German>
|
||||
<Spanish>Borrar</Spanish>
|
||||
<Polish>Usuń</Polish>
|
||||
<French>Désamorçé</French>
|
||||
<Czech>Čistý</Czech>
|
||||
<Italian>Libera</Italian>
|
||||
<Hungarian>Törlés</Hungarian>
|
||||
<Portuguese>Limpar</Portuguese>
|
||||
<Russian>Pассеиваться</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_Dial">
|
||||
<English>Dial</English>
|
||||
<German>Wählen</German>
|
||||
<Spanish>Marcar</Spanish>
|
||||
<Polish>Wybierz mumer</Polish>
|
||||
<French>Composer</French>
|
||||
<Czech>Vytočit</Czech>
|
||||
<Italian>Composizione numero</Italian>
|
||||
<Hungarian>Tárcsázás</Hungarian>
|
||||
<Portuguese>Discar</Portuguese>
|
||||
<Russian>Hабрать</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_Up">
|
||||
<English>Up</English>
|
||||
<German>Hoch</German>
|
||||
<Spanish>Arriba</Spanish>
|
||||
<Polish>W górę</Polish>
|
||||
<French>Haut</French>
|
||||
<Czech>Nahoru</Czech>
|
||||
<Italian>Sopra</Italian>
|
||||
<Hungarian>Fel</Hungarian>
|
||||
<Portuguese>Cima</Portuguese>
|
||||
<Russian>Поднять</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Phone_Down">
|
||||
<English>Down</English>
|
||||
<German>Runter</German>
|
||||
<Spanish>Abajo</Spanish>
|
||||
<Polish>W dół</Polish>
|
||||
<French>Bas</French>
|
||||
<Czech>Dolu</Czech>
|
||||
<Italian>Sotto</Italian>
|
||||
<Hungarian>Le</Hungarian>
|
||||
<Portuguese>Baixo</Portuguese>
|
||||
<Russian>Опустить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Cancel">
|
||||
<English>Cancel</English>
|
||||
<German>Abbrechen</German>
|
||||
<Spanish>Cancelar</Spanish>
|
||||
<Polish>Anuluj</Polish>
|
||||
<French>Annuler</French>
|
||||
<Czech>Zrušit</Czech>
|
||||
<Italian>Annulla</Italian>
|
||||
<Hungarian>Mégsem</Hungarian>
|
||||
<Portuguese>Cancelar</Portuguese>
|
||||
<Russian>Отмена</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DetonateMenu">
|
||||
<English>Detonate Menu</English>
|
||||
<German>"Zünden"-Menü</German>
|
||||
<Spanish>Menú de detonación</Spanish>
|
||||
<Polish>Menu detonowania</Polish>
|
||||
<French>Menu de mise à feu</French>
|
||||
<Czech>Menu Detonace</Czech>
|
||||
<Italian>Menù di detonazione</Italian>
|
||||
<Hungarian>Robbantás menü</Hungarian>
|
||||
<Portuguese>Menu de detonação</Portuguese>
|
||||
<Russian>Меню Подрыв</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_PlaceMenu">
|
||||
<English>Place Menu</English>
|
||||
<German>"Platzieren"-Menü</German>
|
||||
<Spanish>Menú de colocación</Spanish>
|
||||
<Polish>Menu umieszczania</Polish>
|
||||
<French>Menu Placement</French>
|
||||
<Czech>Menu Umístění</Czech>
|
||||
<Italian>Menù di collocamento</Italian>
|
||||
<Hungarian>Lerakás menü</Hungarian>
|
||||
<Portuguese>Menu de posicionamento</Portuguese>
|
||||
<Russian>Меню Установить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Defuse">
|
||||
<English>Defuse</English>
|
||||
<German>Entschärfen</German>
|
||||
<Spanish>Desactivar</Spanish>
|
||||
<Polish>Rozbrój</Polish>
|
||||
<French>Désamorçer</French>
|
||||
<Czech>Zneškodnit</Czech>
|
||||
<Italian>Disinnesca</Italian>
|
||||
<Hungarian>Hatástalanítás</Hungarian>
|
||||
<Portuguese>Desarmar</Portuguese>
|
||||
<Russian>Обезвредить</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DefusingExplosive">
|
||||
<English>Defusing Explosive...</English>
|
||||
<German>Entschärfe Sprengstoff...</German>
|
||||
<Spanish>Desactivando explosivo...</Spanish>
|
||||
<Polish>Rozbrajanie ładunku...</Polish>
|
||||
<French>Désamorçage des explosifs...</French>
|
||||
<Czech>Zneškodňuji Výbušninu...</Czech>
|
||||
<Italian>Esposivo in fase di disattivazione...</Italian>
|
||||
<Hungarian>Robbanóanyag hatástalaníása...</Hungarian>
|
||||
<Portuguese>Desarmando Explosivo...</Portuguese>
|
||||
<Russian>Обезвреживание...</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_timerName">
|
||||
<English>Timer</English>
|
||||
<German>Zeitzünder</German>
|
||||
<Spanish>Temporizador</Spanish>
|
||||
<Polish>Czasomierz</Polish>
|
||||
<French>Retard</French>
|
||||
<Czech>Časovač</Czech>
|
||||
<Italian>Cronometro</Italian>
|
||||
<Hungarian>Időzített</Hungarian>
|
||||
<Portuguese>Timer</Portuguese>
|
||||
<Russian>Временной</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_TimerMenu">
|
||||
<English>Time: %1m %2s</English>
|
||||
<German>Zeit: %1m %2s</German>
|
||||
<Spanish>Tiempo: %1m %2s</Spanish>
|
||||
<Polish>Czas: %1m %2s</Polish>
|
||||
<French>Temps : %1m %2s</French>
|
||||
<Czech>Čas: %1m %2s</Czech>
|
||||
<Italian>Tempo : %1m %2s</Italian>
|
||||
<Hungarian>Idő: %1m %2s</Hungarian>
|
||||
<Portuguese>Tempo: %1m %2s</Portuguese>
|
||||
<Russian>Tемп: %1m %2c</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SetTime">
|
||||
<English>Set Time</English>
|
||||
<German>Zeit einstellen</German>
|
||||
<Spanish>Configurar tiempo</Spanish>
|
||||
<Polish>Ustaw czas</Polish>
|
||||
<French>Régler retard</French>
|
||||
<Czech>Nastavit Čas</Czech>
|
||||
<Italian>Modifica il conto alla rovescia</Italian>
|
||||
<Hungarian>Idő állítása</Hungarian>
|
||||
<Portuguese>Configurar Tempo</Portuguese>
|
||||
<Russian>Xронометр</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_TriggerMenu">
|
||||
<English>Select a Trigger</English>
|
||||
<German>Wähle einen Zünder</German>
|
||||
<Spanish>Seleccionar un disparador</Spanish>
|
||||
<Polish>Wybierz zapalnik</Polish>
|
||||
<French>Sélectionner une mise à feu</French>
|
||||
<Czech>Zvolit Detonátor</Czech>
|
||||
<Italian>Seleziona un Attivatore</Italian>
|
||||
<Hungarian>Detonátor kiválasztása</Hungarian>
|
||||
<Portuguese>Selecionar um Gatilho</Portuguese>
|
||||
<Russian>Выберите</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SelectTrigger">
|
||||
<English>Select</English>
|
||||
<German>Wählen</German>
|
||||
<Spanish>Seleccionar</Spanish>
|
||||
<Polish>Wybierz</Polish>
|
||||
<French>Sélectionner</French>
|
||||
<Czech>Zvolit</Czech>
|
||||
<Italian>Seleziona</Italian>
|
||||
<Hungarian>Kiválasztás</Hungarian>
|
||||
<Portuguese>Selecionar</Portuguese>
|
||||
<Russian>Выбрать защелка</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_PressurePlate">
|
||||
<English>Pressure Plate</English>
|
||||
<Polish>Płyta naciskowa</Polish>
|
||||
<Spanish>Placa de presión</Spanish>
|
||||
<German>Druckplatte</German>
|
||||
<French>Plaque de pression</French>
|
||||
<Czech>Nášlapná nástraha</Czech>
|
||||
<Italian>Piastra a Pressione</Italian>
|
||||
<Hungarian>Nyomólap</Hungarian>
|
||||
<Portuguese>Placa de pressão</Portuguese>
|
||||
<Russian>Давление</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_TripWire">
|
||||
<English>Tripwire</English>
|
||||
<Polish>Linka naciągu</Polish>
|
||||
<Spanish>Cable trampa</Spanish>
|
||||
<German>Stolperdraht</German>
|
||||
<French>Fil de butée</French>
|
||||
<Czech>Nástražný drát</Czech>
|
||||
<Italian>Filo a Inciampo</Italian>
|
||||
<Hungarian>Botlódrót</Hungarian>
|
||||
<Portuguese>Linha de tração</Portuguese>
|
||||
<Russian>Натяжной</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_IRSensor">
|
||||
<English>IR Sensor</English>
|
||||
<Polish>Czujnik podczerwieni</Polish>
|
||||
<Spanish>Sensor IR</Spanish>
|
||||
<German>Infrarotsensor</German>
|
||||
<French>Capteur IR</French>
|
||||
<Czech>IR Značkovač</Czech>
|
||||
<Italian>Sensore IR</Italian>
|
||||
<Hungarian>IR szenzor</Hungarian>
|
||||
<Portuguese>Sensor IV</Portuguese>
|
||||
<Russian>ИК</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_NoTriggersAvailable">
|
||||
<English>No triggers available for %1</English>
|
||||
<Polish>Brak dostępnych zapalników dla %1</Polish>
|
||||
<Spanish>No hay detonadores disponibles para %1</Spanish>
|
||||
<German>Keine Auslöser vorhanden für %1</German>
|
||||
<French>Pas de mise à feu disponible pour %1</French>
|
||||
<Czech>Žádný detonátor k dispozici pro %1</Czech>
|
||||
<Italian>Nessun attivatore disponibile per %1</Italian>
|
||||
<Hungarian>Nincs detonátor a %1</Hungarian>
|
||||
<Portuguese>Nenhum gatilho disponível para %1</Portuguese>
|
||||
<Russian>Нет защелка доступны для %1</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SLAME_IRSensor">
|
||||
<English>IR Sensor (Side Attack)</English>
|
||||
<Polish>Czujnik podczerwieni (wybuch na bok)</Polish>
|
||||
<Spanish>Sensor IR (ataque lateral)</Spanish>
|
||||
<German>Infrarotsensor (Seitenangriff)</German>
|
||||
<French>Capteur IR (de flanc)</French>
|
||||
<Czech>IR Značkovač (Výbuch stranou)</Czech>
|
||||
<Italian>Sensore IR (Attacco laterale)</Italian>
|
||||
<Hungarian>IR Sensor (Side Attack)</Hungarian>
|
||||
<Portuguese>Sensor infravermelho (ataque lateral)</Portuguese>
|
||||
<Russian>ИК (боковая атака)</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_SLAME_Magnetic">
|
||||
<English>Magnetic Influence Sensor (Bottom Attack)</English>
|
||||
<Polish>Czujnik magnetyczny (wybuch w górę)</Polish>
|
||||
<Spanish>Sensor IM (ataque inferior)</Spanish>
|
||||
<German>Magnetfeldsensor (Bodenangriff)</German>
|
||||
<French>Capteur Magnétique (par le bas)</French>
|
||||
<Czech>Magnetický Senzor (Výbuch ze spoda)</Czech>
|
||||
<Italian>Sensore Magnetico di Prossimità (Attacco inferiore)</Italian>
|
||||
<Hungarian>Mágneses (Bottom Attack)</Hungarian>
|
||||
<Portuguese>Influência magnética (ataque inferior)</Portuguese>
|
||||
<Russian>Магнитный (дно атака)</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_NoExplosivesAvailable">
|
||||
<English>No explosives on trigger.</English>
|
||||
<German>Keine Sprengladungen auf diesem Auslöser.</German>
|
||||
<Spanish>Ningún explosivo en el detonador.</Spanish>
|
||||
<French>Pas d'explosif à mettre à feu.</French>
|
||||
<Italian>Nessun esplosivo sul sensore.</Italian>
|
||||
<Czech>Žádná výbušnina k odpálení.</Czech>
|
||||
<Hungarian>Nincs robbanóanyag a detonátorhoz.</Hungarian>
|
||||
<Polish>Brak ładunków na zapalnik.</Polish>
|
||||
<Portuguese>Nenhum explosivo no gatilho.</Portuguese>
|
||||
<Russian>Нет взрывчатки на курок.</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DeadManSwitch_displayName">
|
||||
<English>Dead Man's Switch</English>
|
||||
<German>Totmannschalter</German>
|
||||
<French>Mise à feu par relâchement de pression</French>
|
||||
<Czech>Spínač mrtvého muže</Czech>
|
||||
<Polish>Czuwak</Polish>
|
||||
<Spanish>Detonador de hombre muerto</Spanish>
|
||||
<Hungarian>Dead Man's Switch</Hungarian>
|
||||
<Russian>Кнопка мертвеца</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_DeadManSwitch_description">
|
||||
<English>Used to remotely trigger explosives when released.</English>
|
||||
<German>Zündet Sprengladungen wenn losgelassen.</German>
|
||||
<French>Déclenche la mise à feu d'un explosif lorsqu'il est libéré.</French>
|
||||
<Czech>Používaný k vzdálenému odpálení, při uvolnění odpálí výbušniny</Czech>
|
||||
<Polish>Używany w celu zdalnej detonacji ładunków kiedy jego operator zostanie zabity.</Polish>
|
||||
<Spanish>Utilizado para detonar explosivos remotamente al soltarlo.</Spanish>
|
||||
<Hungarian>Robbanóanyagok távoli robbantásához</Hungarian>
|
||||
<Russian>Используется для дистанционного подрыва, после смерти оператора.</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Explosives_Pickup">
|
||||
<English>Pick up</English>
|
||||
<German>Aufnehmen</German>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
@ -1,18 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="Arma2">
|
||||
<Package name="ACE2">
|
||||
<Container name="frag">
|
||||
<Key ID="STR_DN_ACE_FRAG">
|
||||
<English>(Æ) Disable Fragmentation</English>
|
||||
<Czech>(Æ) Zakázat fragmentaci granátů</Czech>
|
||||
<German>(Æ) Weapons: Keine Schrapnelle</German>
|
||||
<Polish>(Æ) Wyłącz głowice fragmentacyjne</Polish>
|
||||
<Russian>(Æ) Выключить разлёт осколков</Russian>
|
||||
<French>(Æ) Disable Fragmentation</French>
|
||||
<Spanish>(Æ) Disable Fragmentation</Spanish>
|
||||
<Italian>(Æ) Disable Fragmentation</Italian>
|
||||
<Hungarian>(Æ) Disable Fragmentation</Hungarian>
|
||||
</Key>
|
||||
</Container>
|
||||
</Package>
|
||||
</Project>
|
||||
<Package name="ACE2">
|
||||
<Container name="frag">
|
||||
<Key ID="STR_DN_ACE_FRAG">
|
||||
<English>Disable Fragmentation</English>
|
||||
<Czech>Zakázat fragmentaci granátů</Czech>
|
||||
<German>Weapons: Keine Schrapnelle</German>
|
||||
<Polish>Wyłącz głowice fragmentacyjne</Polish>
|
||||
<Russian>Выключить разлёт осколков</Russian>
|
||||
</Key>
|
||||
</Container>
|
||||
</Package>
|
||||
</Project>
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2014-12-17 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Hearing">
|
||||
<Key ID="STR_ACE_Hearing_EarPlugs_Name">
|
||||
@ -101,6 +101,7 @@
|
||||
<Key ID="STR_ACE_Hearing_DisableEarRinging">
|
||||
<English>Disable ear ringing</English>
|
||||
<Spanish>Desactivar zumbido de oídos</Spanish>
|
||||
<German>Knalltrauma deaktivieren</German>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
@ -1,21 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-04-03 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Interact_Menu">
|
||||
<Key ID="STR_ACE_Interact_Menu_AlwaysUseCursorSelfInteraction">
|
||||
<English>Always display cursor for self interaction</English>
|
||||
<German>Immer den Cursor für Selbst-Interaktionen anzeigen.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interact_Menu_InteractKey">
|
||||
<English>Interact Key</English>
|
||||
<German>Interaktionstaste</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interact_Menu_SelfInteractKey">
|
||||
<English>Self Interaction Key</English>
|
||||
<German>Selbst-Interaktionstaste</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interact_Menu_SelfActionsRoot">
|
||||
<English>Self Actions</English>
|
||||
<German>Selbst-Interaktion</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interact_Menu_VehicleActionsRoot">
|
||||
<English>Vehicle Actions</English>
|
||||
<German>Fahrzeug-Interaktion</German>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
@ -1,30 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2014-12-20 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Interaction">
|
||||
<Key ID="STR_ACE_Interaction_MainAction">
|
||||
<English>Interactions</English>
|
||||
<German>Interaktion</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_Torso">
|
||||
<English>Torso</English>
|
||||
<German>Torso</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_Head">
|
||||
<English>Head</English>
|
||||
<German>Kopf</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_ArmLeft">
|
||||
<English>Left Arm</English>
|
||||
<German>Arm links</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_ArmRight">
|
||||
<English>Right Arm</English>
|
||||
<German>Arm rechts</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_LegLeft">
|
||||
<English>Left Leg</English>
|
||||
<German>Bein links</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_LegRight">
|
||||
<English>Right Leg</English>
|
||||
<German>Bein rechts</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_Weapon">
|
||||
<English>Weapon</English>
|
||||
<German>Waffe</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_InteractionMenu">
|
||||
<English>Interaction Menu</English>
|
||||
@ -365,7 +373,7 @@
|
||||
<Key ID="STR_ACE_Interaction_YouWereTappedRight">
|
||||
<English>You were tapped on the RIGHT shoulder</English>
|
||||
<Spanish>Te tocaron el hombro DERECHO</Spanish>
|
||||
<German>Dir wurde auf die Schulter geklopft</German>
|
||||
<German>Dir wurde auf die Rechte Schulter geklopft</German>
|
||||
<French>On te tape sur l'épaule</French>
|
||||
<Polish>Zostałeś klepnięty po ramieniu</Polish>
|
||||
<Hungarian>Vállonveregettek</Hungarian>
|
||||
@ -377,7 +385,7 @@
|
||||
<Key ID="STR_ACE_Interaction_YouWereTappedLeft">
|
||||
<English>You were tapped on the LEFT shoulder.</English>
|
||||
<Spanish>Te tocaron el hombro IZQUIERDO.</Spanish>
|
||||
<German>Dir wurde auf die Schulter geklopft</German>
|
||||
<German>Dir wurde auf die Linke Schulter geklopft</German>
|
||||
<French>On te tape sur l'épaule.</French>
|
||||
<Polish>Zostałeś klepnięty po ramieniu</Polish>
|
||||
<Hungarian>Vállonveregettek</Hungarian>
|
||||
@ -655,6 +663,7 @@
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Interaction_Passengers">
|
||||
<English>Passengers</English>
|
||||
<German>Passagiere</German>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
||||
</Project>
|
@ -1,12 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-02-13 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Inventory">
|
||||
<Key ID="STR_ACE_Inventory_SettingName">
|
||||
<English>Make Inventory Display Bigger</English>
|
||||
</Key>
|
||||
<German>Die Anzeige des Inventar vergrößern.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Inventory_SettingDescription">
|
||||
<English>Normally inventory display is scaled by UI size. This allows scaling the Inventory UI size up, but doesn't increase font size allowing more rows displayed.</English>
|
||||
<German>Normalerweise wird die Größe des Inventars mit der Größe der UI skaliert. Diese Einstellung allerdings vergrößert das Inventar bei gleichbleibender Schriftgröße, so dass mehr Einträge angzeigt werden können.</German>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
@ -24,7 +24,6 @@ class CfgVehicles {
|
||||
class Turrets: Turrets {
|
||||
class MainTurret: MainTurret {
|
||||
GVAR(Enabled) = 1; // Enable laser self-designation
|
||||
stabilizedInAxes = 4; // This stablizes the turret a bit more for laser designation
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -1,12 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2015-04-03 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Laser_SelfDesignate">
|
||||
<Key ID="STR_ACE_Laser_SelfDesignate_DesignatorOn">
|
||||
<English>Laser<br/>Designator On</English>
|
||||
<German>Lasermarkierer<br/>an</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_Laser_SelfDesignate_DesignatorOff">
|
||||
<English>Laser<br/>Designator Off</English>
|
||||
<German>Lasermarkierer<br/>aus</German>
|
||||
</Key>
|
||||
</Package>
|
||||
</Project>
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Edited with tabler - 2014-12-21 -->
|
||||
<!-- Edited with tabler - 2015-04-07 -->
|
||||
<Project name="ACE">
|
||||
<Package name="Wirecutter">
|
||||
<Key ID="STR_ACE_logistics_wirecutter_wirecutterName">
|
||||
@ -9,6 +9,7 @@
|
||||
</Key>
|
||||
<Key ID="STR_ACE_logistics_wirecutter_wirecutterDescription">
|
||||
<English>Wirecutter</English>
|
||||
<German>Schneidet Draht.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ACE_logistics_wirecutter_CutFence">
|
||||
<English>Cut Fence</English>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "script_component.hpp"
|
||||
#include "script_component.hpp"
|
||||
|
||||
class CfgPatches {
|
||||
class ADDON {
|
||||
@ -546,7 +546,7 @@ class CfgPatches {
|
||||
author[] = {"ACE Team"};
|
||||
authorUrl = "";
|
||||
versionDesc = "A.C.E.";
|
||||
versionAct = "['MAIN',_this] execVM '\z\ace\addons\main\about.sqf';";
|
||||
versionAct = QUOTE(['MAIN',_this] execVM '\z\ace\addons\main\about.sqf';);
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
};
|
||||
|
File diff suppressed because it is too large
Load Diff
26
documentation/development/how-to-translate-ace3.md
Normal file
26
documentation/development/how-to-translate-ace3.md
Normal file
@ -0,0 +1,26 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: How to translate ACE3
|
||||
group: dev
|
||||
parent: wiki
|
||||
order: 20
|
||||
---
|
||||
|
||||
This page describes in short how you can help translating ACE3 into your language.
|
||||
|
||||
1. If you don't already have one create a GitHub account
|
||||
2. Open the ACE3 repository at https://github.com/acemod/ACE3
|
||||
3. In the top right corner press the "Fork" button
|
||||
4. You are being redirected to your personal fork, a version that is hosted on your GitHub account (it says "yourUsername/ACE3")
|
||||
5. Clone that fork to your PC (There are a lot of tools and tutorials how to do this (e.g. [GitHub for Windows](https://windows.github.com)))
|
||||
6. Download [tabler](https://github.com/bux578/tabler/releases) and extract it somewhere
|
||||
7. Open the tabler.exe and in the menu click "File > Open language files"
|
||||
8. Point tabler to the cloned ACE3 directory
|
||||
9. Start translating
|
||||
10. When done go to the menu and click "File > Save language files"
|
||||
11. Commit your changes to your local cloned repository
|
||||
12. Sync (Push) your commit(s) to your fork
|
||||
13. Create a Pull Request for your changes
|
||||
|
||||
(The last three steps require some git knowledge, but there are a lot of tutorials out there)
|
||||
[GitHub for Windows help](https://windows.github.com/help.html)
|
24
documentation/user/how-to-make-a-feature-request.md
Normal file
24
documentation/user/how-to-make-a-feature-request.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: How to make a feature request
|
||||
group: user
|
||||
order: 11
|
||||
parent: wiki
|
||||
---
|
||||
|
||||
### Before requesting
|
||||
|
||||
ACE 2, AGM and CSE had a lot of features implemented or planned. All of them are or have been evaluated for inclusion in ACE3 itself, and we'd like to port the mayority of them eventually. However, due to time constraints, we have only managed to do a fraction of the job so far.
|
||||
|
||||
There's really no point on making feature requests for anything included or planned for inclusion in ACE2, AGM or CSE. The majority of those things are been considered for porting or rewritting already.
|
||||
|
||||
<div class="panel callout">
|
||||
<h5>Please note:</h5>
|
||||
<p>Due to the pace at which development is taking place, we are establishing a feature request embargo during the first week weeks prior and posterior to the first release. Feel free to add feature requests as described below, but don't expect them to be evaluated or discussed yet. Any dev activity on the feature request thread is highly unlikely during that period.</p>
|
||||
</div>
|
||||
|
||||
### Requesting a feature
|
||||
|
||||
In order not to spam the issue tracker with duplicated requests, we have have created a single <a href="{{ site.githubUrl }}/issues/414/" target="_blank">Issue for feature request</a>. Any and all requests should be done there, where they will get discussed and evaluated. Before posting a new one, please make sure to check the previous entries on the thread and make a quick search; please don't reiterate requests that had already been either accepted for inclusion or disregarded.
|
||||
|
||||
Accepted feature requests may be moved to a sepparate issue by moderators for further discussion.
|
8
mod.cpp
8
mod.cpp
@ -1,12 +1,12 @@
|
||||
name = "ACE3";
|
||||
picture = "logo_ace3_ca.paa";
|
||||
actionName = "Github";
|
||||
action = "https://github.com/KoffeinFlummi/ACE3";
|
||||
actionName = "GitHub";
|
||||
action = "https://github.com/acemod/ACE3";
|
||||
description = "ACE3 - Version 3.0.0";
|
||||
logo = "logo_ace3_ca.paa";
|
||||
logoOver = "logo_ace3_ca.paa";
|
||||
tooltip = "ACE3";
|
||||
tooltipOwned = "ACE3 Owned";
|
||||
overview = "ACE3 is a joint effort by the teams behind ACE2, AGM and CSE to improve the realism and authenticity of Arma3.";
|
||||
overview = "ACE3 is a joint effort by the teams behind ACE2, AGM and CSE to improve the realism and authenticity of Arma 3.";
|
||||
author = "ACE3 Team";
|
||||
overviewPicture = "logo_ace3_ca.paa";
|
||||
overviewPicture = "logo_ace3_ca.paa";
|
||||
|
Loading…
Reference in New Issue
Block a user