Version 1.4.5

Added support for the New DS4 USB Adapater (Thanks to boganhobo and
Chamilsaan)
Implemented teokp's amazing fix for hide ds4 not working on the
anniversary update of Windows 10: when a controller fails to enter
exclusive mode, DS4Windows will ask for admin privilages to fix the
issue.
Now (near)unlimited Special Actions can be made from the previous limit
of 50
Special Action Xbox Game DVR is now no longer limited to Windows 10,
renamed multi action button: Assign a macro to single tap, double tap,
and holding down a button
Added option for White DS4Windows Icon in the notification tray (While
not merged from, thanks to tehmantra)
Added option to temporarily turn off DS4Windows when using a certain
program (togglable in the Auto Profiles Tab) (Same case as above but
thanks to dedChar to bring to light)
Fixed Options crashes in certain locales where decimal points are
repesented with commas, such as German (Thanks to kiliansch)
Added/Updated translations for many languauges, now including Japanese,
Slovenian, Hungarian, Greek, Finnish, Czech, Indonesian, and Ukrainian
This commit is contained in:
Jays2Kings 2016-09-21 21:38:38 -04:00
parent a06d77641f
commit 1bfc69ee37
156 changed files with 37697 additions and 10257 deletions

View File

@ -49,6 +49,12 @@ namespace DS4Windows
} }
} }
} }
public class ActionState
{
public bool[] dev = new bool[4];
}
public static SyntheticState globalState = new SyntheticState(); public static SyntheticState globalState = new SyntheticState();
public static SyntheticState[] deviceState = { new SyntheticState(), new SyntheticState(), new SyntheticState(), new SyntheticState() }; public static SyntheticState[] deviceState = { new SyntheticState(), new SyntheticState(), new SyntheticState(), new SyntheticState() };
@ -65,7 +71,9 @@ namespace DS4Windows
public static int[] fadetimer = { 0, 0, 0, 0 }; public static int[] fadetimer = { 0, 0, 0, 0 };
public static int[] prevFadetimer = { 0, 0, 0, 0 }; public static int[] prevFadetimer = { 0, 0, 0, 0 };
public static DS4Color[] lastColor = new DS4Color[4]; public static DS4Color[] lastColor = new DS4Color[4];
public static bool[,] actionDone = new bool[4, 50]; public static List<ActionState> actionDone = new List<ActionState>();
//public static List<bool>[] actionDone = { new List<bool>(), new List<bool>(), new List<bool>(), new List<bool>() };
//public static bool[,] actionDone = new bool[4, 50];
public static SpecialAction[] untriggeraction = new SpecialAction[4]; public static SpecialAction[] untriggeraction = new SpecialAction[4];
public static DateTime[] nowAction = { DateTime.MinValue, DateTime.MinValue, DateTime.MinValue, DateTime.MinValue }; public static DateTime[] nowAction = { DateTime.MinValue, DateTime.MinValue, DateTime.MinValue, DateTime.MinValue };
public static DateTime[] oldnowAction = { DateTime.MinValue, DateTime.MinValue, DateTime.MinValue, DateTime.MinValue }; public static DateTime[] oldnowAction = { DateTime.MinValue, DateTime.MinValue, DateTime.MinValue, DateTime.MinValue };
@ -1018,6 +1026,10 @@ namespace DS4Windows
//DS4KeyType keyType = getShiftCustomKeyType(device, customKey.Key); //DS4KeyType keyType = getShiftCustomKeyType(device, customKey.Key);
SpecialAction action = GetAction(actionname); SpecialAction action = GetAction(actionname);
int index = GetActionIndexOf(actionname); int index = GetActionIndexOf(actionname);
if (actionDone.Count < index + 1)
actionDone.Add(new ActionState());
else if (actionDone.Count > GetActions().Count())
actionDone.RemoveAt(actionDone.Count - 1);
double time; double time;
//If a key or button is assigned to the trigger, a key special action is used like //If a key or button is assigned to the trigger, a key special action is used like
//a quick tap to use and hold to use the regular custom button/key //a quick tap to use and hold to use the regular custom button/key
@ -1113,9 +1125,9 @@ namespace DS4Windows
if (triggeractivated && action.type == "Program") if (triggeractivated && action.type == "Program")
{ {
if (!actionDone[device, index]) if (!actionDone[index].dev[device])
{ {
actionDone[device, index] = true; actionDone[index].dev[device] = true;
if (!string.IsNullOrEmpty(action.extra)) if (!string.IsNullOrEmpty(action.extra))
Process.Start(action.details, action.extra); Process.Start(action.details, action.extra);
else else
@ -1124,9 +1136,9 @@ namespace DS4Windows
} }
else if (triggeractivated && action.type == "Profile") else if (triggeractivated && action.type == "Profile")
{ {
if (!actionDone[device, index] && string.IsNullOrEmpty(tempprofilename[device])) if (!actionDone[index].dev[device] && string.IsNullOrEmpty(tempprofilename[device]))
{ {
actionDone[device, index] = true; actionDone[index].dev[device] = true;
untriggeraction[device] = action; untriggeraction[device] = action;
untriggerindex[device] = index; untriggerindex[device] = index;
foreach (DS4Controls dc in action.trigger) foreach (DS4Controls dc in action.trigger)
@ -1150,10 +1162,10 @@ namespace DS4Windows
} }
else if (triggeractivated && action.type == "Macro") else if (triggeractivated && action.type == "Macro")
{ {
if (!actionDone[device, index]) if (!actionDone[index].dev[device])
{ {
DS4KeyType keyType = action.keyType; DS4KeyType keyType = action.keyType;
actionDone[device, index] = true; actionDone[index].dev[device] = true;
foreach (DS4Controls dc in action.trigger) foreach (DS4Controls dc in action.trigger)
resetToDefaultValue(dc, MappedState); resetToDefaultValue(dc, MappedState);
PlayMacro(device, macroControl, String.Join("/", action.macro), DS4Controls.None, keyType); PlayMacro(device, macroControl, String.Join("/", action.macro), DS4Controls.None, keyType);
@ -1163,9 +1175,9 @@ namespace DS4Windows
} }
else if (triggeractivated && action.type == "Key") else if (triggeractivated && action.type == "Key")
{ {
if (action.uTrigger.Count == 0 || (action.uTrigger.Count > 0 && untriggerindex[device] == -1 && !actionDone[device, index])) if (action.uTrigger.Count == 0 || (action.uTrigger.Count > 0 && untriggerindex[device] == -1 && !actionDone[index].dev[device]))
{ {
actionDone[device, index] = true; actionDone[index].dev[device] = true;
untriggerindex[device] = index; untriggerindex[device] = index;
ushort key; ushort key;
ushort.TryParse(action.details, out key); ushort.TryParse(action.details, out key);
@ -1188,9 +1200,9 @@ namespace DS4Windows
} }
else if (action.uTrigger.Count > 0 && utriggeractivated && action.type == "Key") else if (action.uTrigger.Count > 0 && utriggeractivated && action.type == "Key")
{ {
if (untriggerindex[device] > -1 && !actionDone[device, index]) if (untriggerindex[device] > -1 && !actionDone[index].dev[device])
{ {
actionDone[device, index] = true; actionDone[index].dev[device] = true;
untriggerindex[device] = -1; untriggerindex[device] = -1;
ushort key; ushort key;
ushort.TryParse(action.details, out key); ushort.TryParse(action.details, out key);
@ -1226,8 +1238,10 @@ namespace DS4Windows
} }
else if (triggeractivated && action.type == "BatteryCheck") else if (triggeractivated && action.type == "BatteryCheck")
{ {
string[] dets = action.details.Split(','); string[] dets = action.details.Split('|');
if (bool.Parse(dets[1]) && !actionDone[device, index]) if (dets.Length == 1)
dets = action.details.Split(',');
if (bool.Parse(dets[1]) && !actionDone[index].dev[device])
{ {
Log.LogToTray("Controller " + (device + 1) + ": " + Log.LogToTray("Controller " + (device + 1) + ": " +
ctrl.getDS4Battery(device), true); ctrl.getDS4Battery(device), true);
@ -1235,7 +1249,7 @@ namespace DS4Windows
if (bool.Parse(dets[2])) if (bool.Parse(dets[2]))
{ {
DS4Device d = ctrl.DS4Controllers[device]; DS4Device d = ctrl.DS4Controllers[device];
if (!actionDone[device, index]) if (!actionDone[index].dev[device])
{ {
lastColor[device] = d.LightBarColor; lastColor[device] = d.LightBarColor;
DS4LightBar.forcelight[device] = true; DS4LightBar.forcelight[device] = true;
@ -1246,11 +1260,11 @@ namespace DS4Windows
if (fadetimer[device] < 100) if (fadetimer[device] < 100)
DS4LightBar.forcedColor[device] = getTransitionedColor(lastColor[device], trans, fadetimer[device] += 2); DS4LightBar.forcedColor[device] = getTransitionedColor(lastColor[device], trans, fadetimer[device] += 2);
} }
actionDone[device, index] = true; actionDone[index].dev[device] = true;
} }
else if (!triggeractivated && action.type == "BatteryCheck") else if (!triggeractivated && action.type == "BatteryCheck")
{ {
if (actionDone[device, index]) if (actionDone[index].dev[device])
{ {
fadetimer[device] = 0; fadetimer[device] = 0;
/*if (prevFadetimer[device] == fadetimer[device]) /*if (prevFadetimer[device] == fadetimer[device])
@ -1261,10 +1275,10 @@ namespace DS4Windows
else else
prevFadetimer[device] = fadetimer[device];*/ prevFadetimer[device] = fadetimer[device];*/
DS4LightBar.forcelight[device] = false; DS4LightBar.forcelight[device] = false;
actionDone[device, index] = false; actionDone[index].dev[device] = false;
} }
} }
else if (action.type == "XboxGameDVR") else if (action.type == "XboxGameDVR" || action.type == "MultiAction")
{ {
/*if (getCustomButton(device, action.trigger[0]) != X360Controls.Unbound) /*if (getCustomButton(device, action.trigger[0]) != X360Controls.Unbound)
getCustomButtons(device)[action.trigger[0]] = X360Controls.Unbound; getCustomButtons(device)[action.trigger[0]] = X360Controls.Unbound;
@ -1309,7 +1323,11 @@ namespace DS4Windows
string macro = ""; string macro = "";
if (tappedOnce) //single tap if (tappedOnce) //single tap
{ {
if (int.TryParse(dets[0], out type)) if (action.type == "MultiAction")
{
macro = dets[0];
}
else if (int.TryParse(dets[0], out type))
{ {
switch (type) switch (type)
{ {
@ -1322,6 +1340,7 @@ namespace DS4Windows
} }
if ((DateTime.UtcNow - TimeofEnd) > TimeSpan.FromMilliseconds(150)) if ((DateTime.UtcNow - TimeofEnd) > TimeSpan.FromMilliseconds(150))
{ {
if (macro != "")
PlayMacro(device, macroControl, macro, DS4Controls.None, DS4KeyType.None); PlayMacro(device, macroControl, macro, DS4Controls.None, DS4KeyType.None);
tappedOnce = false; tappedOnce = false;
} }
@ -1329,7 +1348,11 @@ namespace DS4Windows
} }
else if (firstTouch && (DateTime.UtcNow - pastTime) > TimeSpan.FromMilliseconds(1000)) //helddown else if (firstTouch && (DateTime.UtcNow - pastTime) > TimeSpan.FromMilliseconds(1000)) //helddown
{ {
if (int.TryParse(dets[1], out type)) if (action.type == "MultiAction")
{
macro = dets[1];
}
else if (int.TryParse(dets[1], out type))
{ {
switch (type) switch (type)
{ {
@ -1340,12 +1363,17 @@ namespace DS4Windows
case 4: macro = "91/164/71/71/164/91"; break; case 4: macro = "91/164/71/71/164/91"; break;
} }
} }
if (macro != "")
PlayMacro(device, macroControl, macro, DS4Controls.None, DS4KeyType.None); PlayMacro(device, macroControl, macro, DS4Controls.None, DS4KeyType.None);
firstTouch = false; firstTouch = false;
} }
else if (secondtouchbegin) //if double tap else if (secondtouchbegin) //if double tap
{ {
if (int.TryParse(dets[2], out type)) if (action.type == "MultiAction")
{
macro = dets[2];
}
else if (int.TryParse(dets[2], out type))
{ {
switch (type) switch (type)
{ {
@ -1356,12 +1384,13 @@ namespace DS4Windows
case 4: macro = "91/164/71/71/164/91"; break; case 4: macro = "91/164/71/71/164/91"; break;
} }
} }
if (macro != "")
PlayMacro(device, macroControl, macro, DS4Controls.None, DS4KeyType.None); PlayMacro(device, macroControl, macro, DS4Controls.None, DS4KeyType.None);
secondtouchbegin = false; secondtouchbegin = false;
} }
} }
else else
actionDone[device, index] = false; actionDone[index].dev[device] = false;
} }
} }
} }
@ -1383,13 +1412,13 @@ namespace DS4Windows
if (utriggeractivated && action.type == "Profile") if (utriggeractivated && action.type == "Profile")
{ {
if ((action.controls == action.ucontrols && !actionDone[device, index]) || //if trigger and end trigger are the same if ((action.controls == action.ucontrols && !actionDone[index].dev[device]) || //if trigger and end trigger are the same
action.controls != action.ucontrols) action.controls != action.ucontrols)
if (!string.IsNullOrEmpty(tempprofilename[device])) if (!string.IsNullOrEmpty(tempprofilename[device]))
{ {
foreach (DS4Controls dc in action.uTrigger) foreach (DS4Controls dc in action.uTrigger)
{ {
actionDone[device, index] = true; actionDone[index].dev[device] = true;
DS4ControlSettings dcs = getDS4CSetting(device, dc.ToString()); DS4ControlSettings dcs = getDS4CSetting(device, dc.ToString());
if (dcs.action != null) if (dcs.action != null)
{ {
@ -1408,7 +1437,7 @@ namespace DS4Windows
} }
} }
else else
actionDone[device, index] = false; actionDone[index].dev[device] = false;
} }
} }

View File

@ -265,6 +265,11 @@ namespace DS4Windows
set { m_Config.flashWhenLateAt = value; } set { m_Config.flashWhenLateAt = value; }
get { return m_Config.flashWhenLateAt; } get { return m_Config.flashWhenLateAt; }
} }
public static bool UseWhiteIcon
{
set { m_Config.useWhiteIcon = value; }
get { return m_Config.useWhiteIcon; }
}
//controller/profile specfic values //controller/profile specfic values
public static int[] ButtonMouseSensitivity => m_Config.buttonMouseSensitivity; public static int[] ButtonMouseSensitivity => m_Config.buttonMouseSensitivity;
@ -337,6 +342,7 @@ namespace DS4Windows
public static void SaveAction(string name, string controls, int mode, string details, bool edit, string extras = "") public static void SaveAction(string name, string controls, int mode, string details, bool edit, string extras = "")
{ {
m_Config.SaveAction(name, controls, mode, details, edit, extras); m_Config.SaveAction(name, controls, mode, details, edit, extras);
Mapping.actionDone.Add(new Mapping.ActionState());
} }
public static void RemoveAction(string name) public static void RemoveAction(string name)
@ -597,10 +603,11 @@ namespace DS4Windows
public Dictionary<DS4Controls, String>[] shiftCustomMapExtras = { null, null, null, null, null };*/ public Dictionary<DS4Controls, String>[] shiftCustomMapExtras = { null, null, null, null, null };*/
public List<string>[] profileActions = { null, null, null, null, null }; public List<string>[] profileActions = { null, null, null, null, null };
public bool downloadLang = true; public bool downloadLang = true;
public bool useWhiteIcon;
public bool flashWhenLate = true; public bool flashWhenLate = true;
public int flashWhenLateAt = 10; public int flashWhenLateAt = 10;
public int[] gyroSensitivity = { 100, 100, 100, 100, 100 }; public int[] gyroSensitivity = { 100, 100, 100, 100, 100 };
internal int[] gyroInvert = { 0, 0, 0, 0, 0 }; public int[] gyroInvert = { 0, 0, 0, 0, 0 };
public BackingStore() public BackingStore()
{ {
@ -751,7 +758,7 @@ namespace DS4Windows
XmlNode xmlSZD = m_Xdoc.CreateNode(XmlNodeType.Element, "SZDeadZone", null); xmlSZD.InnerText = SZDeadzone[device].ToString(); Node.AppendChild(xmlSZD); XmlNode xmlSZD = m_Xdoc.CreateNode(XmlNodeType.Element, "SZDeadZone", null); xmlSZD.InnerText = SZDeadzone[device].ToString(); Node.AppendChild(xmlSZD);
XmlNode xmlSens = m_Xdoc.CreateNode(XmlNodeType.Element, "Sensitivity", null); XmlNode xmlSens = m_Xdoc.CreateNode(XmlNodeType.Element, "Sensitivity", null);
xmlSens.InnerText = $"{LSSens[device]},{RSSens[device]},{l2Sens[device]},{r2Sens[device]},{SXSens[device]},{SZSens[device]}"; xmlSens.InnerText = $"{LSSens[device]}|{RSSens[device]}|{l2Sens[device]}|{r2Sens[device]}|{SXSens[device]}|{SZSens[device]}";
Node.AppendChild(xmlSens); Node.AppendChild(xmlSens);
XmlNode xmlChargingType = m_Xdoc.CreateNode(XmlNodeType.Element, "ChargingType", null); xmlChargingType.InnerText = chargingType[device].ToString(); Node.AppendChild(xmlChargingType); XmlNode xmlChargingType = m_Xdoc.CreateNode(XmlNodeType.Element, "ChargingType", null); xmlChargingType.InnerText = chargingType[device].ToString(); Node.AppendChild(xmlChargingType);
@ -1118,7 +1125,7 @@ namespace DS4Windows
case "sbnGyroXN": return DS4Controls.GyroXNeg; case "sbnGyroXN": return DS4Controls.GyroXNeg;
case "sbnGyroZP": return DS4Controls.GyroZPos; case "sbnGyroZP": return DS4Controls.GyroZPos;
case "sbnGyroZN": return DS4Controls.GyroZNeg; case "sbnGyroZN": return DS4Controls.GyroZNeg;
#endregion #endregion
case "bnShiftShare": return DS4Controls.Share; case "bnShiftShare": return DS4Controls.Share;
case "bnShiftL3": return DS4Controls.L3; case "bnShiftL3": return DS4Controls.L3;
@ -1388,7 +1395,9 @@ namespace DS4Windows
try try
{ {
Item = m_Xdoc.SelectSingleNode("/" + rootname + "/Sensitivity"); Item = m_Xdoc.SelectSingleNode("/" + rootname + "/Sensitivity");
string[] s = Item.InnerText.Split(','); string[] s = Item.InnerText.Split('|');
if (s.Length == 1)
s = Item.InnerText.Split(',');
double.TryParse(s[0], out LSSens[device]); double.TryParse(s[0], out LSSens[device]);
double.TryParse(s[1], out RSSens[device]); double.TryParse(s[1], out RSSens[device]);
double.TryParse(s[2], out l2Sens[device]); double.TryParse(s[2], out l2Sens[device]);
@ -1453,7 +1462,8 @@ namespace DS4Windows
Item = m_Xdoc.SelectSingleNode("/" + rootname + "/ProfileActions"); Item = m_Xdoc.SelectSingleNode("/" + rootname + "/ProfileActions");
profileActions[device].Clear(); profileActions[device].Clear();
if (!string.IsNullOrEmpty(Item.InnerText)) if (!string.IsNullOrEmpty(Item.InnerText))
profileActions[device].AddRange(Item.InnerText.Split('/')); } profileActions[device].AddRange(Item.InnerText.Split('/'));
}
catch { profileActions[device].Clear(); missingSetting = true; } catch { profileActions[device].Clear(); missingSetting = true; }
foreach (DS4ControlSettings dcs in ds4settings[device]) foreach (DS4ControlSettings dcs in ds4settings[device])
@ -1780,7 +1790,8 @@ namespace DS4Windows
catch { missingSetting = true; } catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/CheckWhen"); Int32.TryParse(Item.InnerText, out CheckWhen); } try { Item = m_Xdoc.SelectSingleNode("/Profile/CheckWhen"); Int32.TryParse(Item.InnerText, out CheckWhen); }
catch { missingSetting = true; } catch { missingSetting = true; }
try { try
{
Item = m_Xdoc.SelectSingleNode("/Profile/Notifications"); Item = m_Xdoc.SelectSingleNode("/Profile/Notifications");
if (!int.TryParse(Item.InnerText, out notifications)) if (!int.TryParse(Item.InnerText, out notifications))
notifications = (Boolean.Parse(Item.InnerText) ? 2 : 0); notifications = (Boolean.Parse(Item.InnerText) ? 2 : 0);
@ -1804,6 +1815,8 @@ namespace DS4Windows
catch { missingSetting = true; } catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/FlashWhenLateAt"); int.TryParse(Item.InnerText, out flashWhenLateAt); } try { Item = m_Xdoc.SelectSingleNode("/Profile/FlashWhenLateAt"); int.TryParse(Item.InnerText, out flashWhenLateAt); }
catch { missingSetting = true; } catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/WhiteIcon"); Boolean.TryParse(Item.InnerText, out useWhiteIcon); }
catch { missingSetting = true; }
for (int i = 0; i < 4; i++) for (int i = 0; i < 4; i++)
{ {
try try
@ -1864,6 +1877,7 @@ namespace DS4Windows
XmlNode xmlDownloadLang = m_Xdoc.CreateNode(XmlNodeType.Element, "DownloadLang", null); xmlDownloadLang.InnerText = downloadLang.ToString(); Node.AppendChild(xmlDownloadLang); XmlNode xmlDownloadLang = m_Xdoc.CreateNode(XmlNodeType.Element, "DownloadLang", null); xmlDownloadLang.InnerText = downloadLang.ToString(); Node.AppendChild(xmlDownloadLang);
XmlNode xmlFlashWhenLate = m_Xdoc.CreateNode(XmlNodeType.Element, "FlashWhenLate", null); xmlFlashWhenLate.InnerText = flashWhenLate.ToString(); Node.AppendChild(xmlFlashWhenLate); XmlNode xmlFlashWhenLate = m_Xdoc.CreateNode(XmlNodeType.Element, "FlashWhenLate", null); xmlFlashWhenLate.InnerText = flashWhenLate.ToString(); Node.AppendChild(xmlFlashWhenLate);
XmlNode xmlFlashWhenLateAt = m_Xdoc.CreateNode(XmlNodeType.Element, "FlashWhenLateAt", null); xmlFlashWhenLateAt.InnerText = flashWhenLateAt.ToString(); Node.AppendChild(xmlFlashWhenLateAt); XmlNode xmlFlashWhenLateAt = m_Xdoc.CreateNode(XmlNodeType.Element, "FlashWhenLateAt", null); xmlFlashWhenLateAt.InnerText = flashWhenLateAt.ToString(); Node.AppendChild(xmlFlashWhenLateAt);
XmlNode xmlWhiteIcon = m_Xdoc.CreateNode(XmlNodeType.Element, "WhiteIcon", null); xmlWhiteIcon.InnerText = useWhiteIcon.ToString(); Node.AppendChild(xmlWhiteIcon);
for (int i = 0; i < 4; i++) for (int i = 0; i < 4; i++)
{ {
@ -1941,7 +1955,7 @@ namespace DS4Windows
case 4: case 4:
el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "Key"; el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "Key";
el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details; el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details;
if (!String.IsNullOrEmpty(extras)) if (!string.IsNullOrEmpty(extras))
{ {
string[] exts = extras.Split('\n'); string[] exts = extras.Split('\n');
el.AppendChild(m_Xdoc.CreateElement("UnloadTrigger")).InnerText = exts[1]; el.AppendChild(m_Xdoc.CreateElement("UnloadTrigger")).InnerText = exts[1];
@ -1957,7 +1971,7 @@ namespace DS4Windows
el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details; el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details;
break; break;
case 7: case 7:
el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "XboxGameDVR"; el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "MultiAction";
el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details; el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details;
break; break;
} }
@ -2001,12 +2015,14 @@ namespace DS4Windows
doc.Load(Global.appdatapath + "\\Actions.xml"); doc.Load(Global.appdatapath + "\\Actions.xml");
XmlNodeList actionslist = doc.SelectNodes("Actions/Action"); XmlNodeList actionslist = doc.SelectNodes("Actions/Action");
string name, controls, type, details, extras, extras2; string name, controls, type, details, extras, extras2;
Mapping.actionDone.Clear();
foreach (XmlNode x in actionslist) foreach (XmlNode x in actionslist)
{ {
name = x.Attributes["Name"].Value; name = x.Attributes["Name"].Value;
controls = x.ChildNodes[0].InnerText; controls = x.ChildNodes[0].InnerText;
type = x.ChildNodes[1].InnerText; type = x.ChildNodes[1].InnerText;
details = x.ChildNodes[2].InnerText; details = x.ChildNodes[2].InnerText;
Mapping.actionDone.Add(new Mapping.ActionState());
if (type == "Profile") if (type == "Profile")
{ {
extras = x.ChildNodes[3].InnerText; extras = x.ChildNodes[3].InnerText;
@ -2046,7 +2062,9 @@ namespace DS4Windows
else if (type == "BatteryCheck") else if (type == "BatteryCheck")
{ {
double doub; double doub;
if (double.TryParse(details.Split(',')[0], out doub)) if (double.TryParse(details.Split('|')[0], out doub))
actions.Add(new SpecialAction(name, controls, type, details, doub));
else if (double.TryParse(details.Split(',')[0], out doub))
actions.Add(new SpecialAction(name, controls, type, details, doub)); actions.Add(new SpecialAction(name, controls, type, details, doub));
else else
actions.Add(new SpecialAction(name, controls, type, details)); actions.Add(new SpecialAction(name, controls, type, details));
@ -2067,7 +2085,7 @@ namespace DS4Windows
actions.Add(new SpecialAction(name, controls, type, details)); actions.Add(new SpecialAction(name, controls, type, details));
} }
} }
else if (type == "XboxGameDVR") else if (type == "XboxGameDVR" || type == "MultiAction")
{ {
actions.Add(new SpecialAction(name, controls, type, details)); actions.Add(new SpecialAction(name, controls, type, details));
} }
@ -2283,6 +2301,30 @@ namespace DS4Windows
if (extras != string.Empty) if (extras != string.Empty)
extra = extras; extra = extras;
} }
else if (type == "XboxGameDVR")
{
string[] dets = details.Split(',');
List<string> macros = new List<string>();
//string dets = "";
int typeT = 0;
for (int i = 0; i < 3; i++)
{
if (int.TryParse(dets[i], out typeT))
{
switch (typeT)
{
case 0: macros.Add("91/71/71/91"); break;
case 1: macros.Add("91/164/82/82/164/91"); break;
case 2: macros.Add("91/164/44/44/164/91"); break;
case 3: macros.Add(dets[3] + "/" + dets[3]); break;
case 4: macros.Add("91/164/71/71/164/91"); break;
}
}
}
this.type = "MultiAction";
type = "MultiAction";
this.details = string.Join(",", macros);
}
else else
this.details = details; this.details = details;

View File

@ -35,10 +35,10 @@
this.chData = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chData = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.tmrUpdate = new System.Windows.Forms.Timer(this.components); this.tmrUpdate = new System.Windows.Forms.Timer(this.components);
this.pnlButton = new System.Windows.Forms.Panel(); this.pnlButton = new System.Windows.Forms.Panel();
this.llbHelp = new System.Windows.Forms.LinkLabel();
this.lbTest = new System.Windows.Forms.Label(); this.lbTest = new System.Windows.Forms.Label();
this.btnStartStop = new System.Windows.Forms.Button(); this.btnStartStop = new System.Windows.Forms.Button();
this.lbLastMessage = new System.Windows.Forms.Label(); this.lbLastMessage = new System.Windows.Forms.Label();
this.llbHelp = new System.Windows.Forms.LinkLabel();
this.btnClear = new System.Windows.Forms.Button(); this.btnClear = new System.Windows.Forms.Button();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.cMTaskbar = new System.Windows.Forms.ContextMenuStrip(this.components); this.cMTaskbar = new System.Windows.Forms.ContextMenuStrip(this.components);
@ -139,6 +139,7 @@
this.lbUseXIPorts = new System.Windows.Forms.Label(); this.lbUseXIPorts = new System.Windows.Forms.Label();
this.nUDXIPorts = new System.Windows.Forms.NumericUpDown(); this.nUDXIPorts = new System.Windows.Forms.NumericUpDown();
this.lbLastXIPort = new System.Windows.Forms.Label(); this.lbLastXIPort = new System.Windows.Forms.Label();
this.cBUseWhiteIcon = new System.Windows.Forms.CheckBox();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.linkProfiles = new System.Windows.Forms.LinkLabel(); this.linkProfiles = new System.Windows.Forms.LinkLabel();
this.lnkControllers = new System.Windows.Forms.LinkLabel(); this.lnkControllers = new System.Windows.Forms.LinkLabel();
@ -207,14 +208,21 @@
// pnlButton // pnlButton
// //
this.pnlButton.BackColor = System.Drawing.SystemColors.Control; this.pnlButton.BackColor = System.Drawing.SystemColors.Control;
this.pnlButton.Controls.Add(this.llbHelp);
this.pnlButton.Controls.Add(this.lbTest); this.pnlButton.Controls.Add(this.lbTest);
this.pnlButton.Controls.Add(this.btnStartStop); this.pnlButton.Controls.Add(this.btnStartStop);
this.pnlButton.Controls.Add(this.lbLastMessage); this.pnlButton.Controls.Add(this.lbLastMessage);
this.pnlButton.Controls.Add(this.llbHelp);
resources.ApplyResources(this.pnlButton, "pnlButton"); resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.Name = "pnlButton"; this.pnlButton.Name = "pnlButton";
this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave); this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave);
// //
// llbHelp
//
resources.ApplyResources(this.llbHelp, "llbHelp");
this.llbHelp.Name = "llbHelp";
this.llbHelp.TabStop = true;
this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked);
//
// lbTest // lbTest
// //
resources.ApplyResources(this.lbTest, "lbTest"); resources.ApplyResources(this.lbTest, "lbTest");
@ -234,13 +242,6 @@
this.lbLastMessage.Name = "lbLastMessage"; this.lbLastMessage.Name = "lbLastMessage";
this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover); this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover);
// //
// llbHelp
//
resources.ApplyResources(this.llbHelp, "llbHelp");
this.llbHelp.Name = "llbHelp";
this.llbHelp.TabStop = true;
this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked);
//
// btnClear // btnClear
// //
resources.ApplyResources(this.btnClear, "btnClear"); resources.ApplyResources(this.btnClear, "btnClear");
@ -852,6 +853,7 @@
this.fLPSettings.Controls.Add(this.panel2); this.fLPSettings.Controls.Add(this.panel2);
this.fLPSettings.Controls.Add(this.cBCloseMini); this.fLPSettings.Controls.Add(this.cBCloseMini);
this.fLPSettings.Controls.Add(this.cBQuickCharge); this.fLPSettings.Controls.Add(this.cBQuickCharge);
this.fLPSettings.Controls.Add(this.cBUseWhiteIcon);
this.fLPSettings.Controls.Add(this.cBDownloadLangauge); this.fLPSettings.Controls.Add(this.cBDownloadLangauge);
this.fLPSettings.Controls.Add(this.cBUpdate); this.fLPSettings.Controls.Add(this.cBUpdate);
this.fLPSettings.Controls.Add(this.pNUpdate); this.fLPSettings.Controls.Add(this.pNUpdate);
@ -1066,6 +1068,13 @@
resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort"); resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort");
this.lbLastXIPort.Name = "lbLastXIPort"; this.lbLastXIPort.Name = "lbLastXIPort";
// //
// cBUseWhiteIcon
//
resources.ApplyResources(this.cBUseWhiteIcon, "cBUseWhiteIcon");
this.cBUseWhiteIcon.Name = "cBUseWhiteIcon";
this.cBUseWhiteIcon.UseVisualStyleBackColor = true;
this.cBUseWhiteIcon.CheckedChanged += new System.EventHandler(this.cBUseWhiteIcon_CheckedChanged);
//
// flowLayoutPanel1 // flowLayoutPanel1
// //
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1"); resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
@ -1330,6 +1339,7 @@
private System.Windows.Forms.ToolStripMenuItem useProfileColorToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem useProfileColorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem useCustomColorToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem useCustomColorToolStripMenuItem;
private AdvancedColorDialog advColorDialog; private AdvancedColorDialog advColorDialog;
private System.Windows.Forms.CheckBox cBUseWhiteIcon;
//private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; //private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
} }
} }

View File

@ -37,6 +37,7 @@ namespace DS4Windows
List<string> profilenames = new List<string>(); List<string> profilenames = new List<string>();
List<string> programpaths = new List<string>(); List<string> programpaths = new List<string>();
List<string>[] proprofiles; List<string>[] proprofiles;
List<bool> turnOffTempProfiles;
private static int WM_QUERYENDSESSION = 0x11; private static int WM_QUERYENDSESSION = 0x11;
private static bool systemShutdown = false; private static bool systemShutdown = false;
private bool wasrunning = false; private bool wasrunning = false;
@ -49,6 +50,7 @@ namespace DS4Windows
bool contextclose; bool contextclose;
string logFile = appdatapath + @"\DS4Service.log"; string logFile = appdatapath + @"\DS4Service.log";
StreamWriter logWriter; StreamWriter logWriter;
bool turnOffTemp;
bool runningBat; bool runningBat;
//bool outputlog = false; //bool outputlog = false;
@ -147,8 +149,6 @@ namespace DS4Windows
{ {
g.Dispose(); g.Dispose();
} }
Icon = Properties.Resources.DS4W;
notifyIcon1.Icon = Properties.Resources.DS4W;
Program.rootHub.Debug += On_Debug; Program.rootHub.Debug += On_Debug;
Log.GuiLog += On_Debug; Log.GuiLog += On_Debug;
@ -188,6 +188,9 @@ namespace DS4Windows
return; return;
} }
//MessageBox.Show(Environment.OSVersion.VersionString); //MessageBox.Show(Environment.OSVersion.VersionString);
cBUseWhiteIcon.Checked = UseWhiteIcon;
Icon = Properties.Resources.DS4W;
notifyIcon1.Icon = UseWhiteIcon ? Properties.Resources.DS4W___White : Properties.Resources.DS4W;
foreach (ToolStripMenuItem t in shortcuts) foreach (ToolStripMenuItem t in shortcuts)
t.DropDownItemClicked += Profile_Changed_Menu; t.DropDownItemClicked += Profile_Changed_Menu;
hideDS4CheckBox.CheckedChanged -= hideDS4CheckBox_CheckedChanged; hideDS4CheckBox.CheckedChanged -= hideDS4CheckBox_CheckedChanged;
@ -499,7 +502,18 @@ namespace DS4Windows
LoadTempProfile(j, proprofiles[j][i], true, Program.rootHub); //j is controller index, i is filename LoadTempProfile(j, proprofiles[j][i], true, Program.rootHub); //j is controller index, i is filename
if (LaunchProgram[j] != string.Empty) Process.Start(LaunchProgram[j]); if (LaunchProgram[j] != string.Empty) Process.Start(LaunchProgram[j]);
} }
if (turnOffTempProfiles[i])
{
turnOffTemp = true;
if (btnStartStop.Text == Properties.Resources.StopText)
{
btnStartStop_Clicked();
hotkeysTimer.Start();
btnStartStop.Text = Properties.Resources.StartText;
}
}
tempProfileProgram = name; tempProfileProgram = name;
break;
} }
} }
else else
@ -509,6 +523,15 @@ namespace DS4Windows
tempProfileProgram = "null"; tempProfileProgram = "null";
for (int j = 0; j < 4; j++) for (int j = 0; j < 4; j++)
LoadProfile(j, false, Program.rootHub); LoadProfile(j, false, Program.rootHub);
if (turnOffTemp)
{
turnOffTemp = false;
if (btnStartStop.Text == Properties.Resources.StartText)
{
btnStartStop_Clicked();
btnStartStop.Text = Properties.Resources.StopText;
}
}
} }
} }
if (bat != null && bat.HasExited && runningBat) if (bat != null && bat.HasExited && runningBat)
@ -526,6 +549,7 @@ namespace DS4Windows
XmlDocument doc = new XmlDocument(); XmlDocument doc = new XmlDocument();
proprofiles = new List<string>[4] { new List<string>(), new List<string>(), proprofiles = new List<string>[4] { new List<string>(), new List<string>(),
new List<string>(), new List<string>() }; new List<string>(), new List<string>() };
turnOffTempProfiles = new List<bool>();
programpaths.Clear(); programpaths.Clear();
if (!File.Exists(appdatapath + "\\Auto Profiles.xml")) if (!File.Exists(appdatapath + "\\Auto Profiles.xml"))
return; return;
@ -534,11 +558,20 @@ namespace DS4Windows
foreach (XmlNode x in programslist) foreach (XmlNode x in programslist)
programpaths.Add(x.Attributes["path"].Value); programpaths.Add(x.Attributes["path"].Value);
foreach (string s in programpaths) foreach (string s in programpaths)
{
for (int i = 0; i < 4; i++) for (int i = 0; i < 4; i++)
{ {
proprofiles[i].Add(doc.SelectSingleNode("/Programs/Program[@path=\"" + s + "\"]" proprofiles[i].Add(doc.SelectSingleNode("/Programs/Program[@path=\"" + s + "\"]"
+ "/Controller" + (i + 1)).InnerText); + "/Controller" + (i + 1)).InnerText);
} }
XmlNode item = doc.SelectSingleNode("/Programs/Program[@path=\"" + s + "\"]"
+ "/TurnOff");
bool turnOff;
if (item != null && bool.TryParse(item.InnerText, out turnOff))
turnOffTempProfiles.Add(turnOff);
else
turnOffTempProfiles.Add(false);
}
} }
string originalsettingstext; string originalsettingstext;
private void CheckDrivers() private void CheckDrivers()
@ -1101,9 +1134,9 @@ namespace DS4Windows
private void hideDS4CheckBox_CheckedChanged(object sender, EventArgs e) private void hideDS4CheckBox_CheckedChanged(object sender, EventArgs e)
{ {
// Prevent the Game Controllers window from throwing an error when controllers are un/hidden // Prevent the Game Controllers window from throwing an error when controllers are un/hidden
System.Diagnostics.Process[] rundll32 = System.Diagnostics.Process.GetProcessesByName("rundll32"); System.Diagnostics.Process[] rundll64 = System.Diagnostics.Process.GetProcessesByName("rundll64");
foreach (System.Diagnostics.Process rundll32Instance in rundll32) foreach (System.Diagnostics.Process rundll64Instance in rundll64)
foreach (System.Diagnostics.ProcessModule module in rundll32Instance.Modules) foreach (System.Diagnostics.ProcessModule module in rundll64Instance.Modules)
if (module.FileName.Contains("joy.cpl")) if (module.FileName.Contains("joy.cpl"))
module.Dispose(); module.Dispose();
@ -1713,6 +1746,11 @@ namespace DS4Windows
DS4LightBar.forcelight[currentCustomLed] = false; DS4LightBar.forcelight[currentCustomLed] = false;
} }
private void cBUseWhiteIcon_CheckedChanged(object sender, EventArgs e)
{
UseWhiteIcon = cBUseWhiteIcon.Checked;
notifyIcon1.Icon = UseWhiteIcon ? Properties.Resources.DS4W___White : Properties.Resources.DS4W;
}
private void advColorDialog_OnUpdateColor(object sender, EventArgs e) private void advColorDialog_OnUpdateColor(object sender, EventArgs e)
{ {

View File

@ -0,0 +1,631 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="chTime.Text" xml:space="preserve">
<value>Čas</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbLastMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>861, 22</value>
</data>
<data name="llbHelp.Location" type="System.Drawing.Point, System.Drawing">
<value>874, 11</value>
</data>
<data name="llbHelp.Size" type="System.Drawing.Size, System.Drawing">
<value>168, 17</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>Kláv. zkratky/O programu</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>Vymazat</value>
</data>
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 192</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>303, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Upravit profil ovladače č. 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>303, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Upravit profil ovladače č. 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>303, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Upravit profil ovladače č. 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>303, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Upravit profil ovladače č. 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>300, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>303, 26</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>303, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Otevřít</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>303, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Ukončit (prostřední tlačítko myši)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Ovladače</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Připojit výhradně k DS4 (experimentální funkce)</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1072, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>46, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>522, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1018, 94</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>Změnit</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1018, 130</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>Změnit</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>872, 23</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1018, 58</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>Změnit</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>872, 59</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>872, 95</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1018, 22</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>Změnit</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>872, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>886, 0</value>
</data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>110, 18</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>Vybraný profil</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>521, 0</value>
</data>
<data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing">
<value>41, 18</value>
</data>
<data name="lbStatus.Text" xml:space="preserve">
<value>Stav</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>732, 0</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>Baterie</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>740, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>740, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>740, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>740, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>522, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>522, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>522, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1072, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>46, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1072, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>46, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1072, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>46, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>Žádné připojené ovladače (max. 4)</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Profily</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>215, 264</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>Změnit</value>
</data>
<data name="assignToController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Přiřadit ovladači č.1</value>
</data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Přiřadit ovladači č.2</value>
</data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Přiřadit ovladači č.3</value>
</data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Přiřadit ovladači č.4</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>Odstranit (Del)</value>
</data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Duplikovat (Ctrl+D)</value>
</data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>Nový profil</value>
</data>
<data name="importToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>Importovat</value>
</data>
<data name="exportToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 26</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Exportovat</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Možnosti profilu</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>98, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>Název profilu</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>&lt;zadejte název profilu&gt;</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>112, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>Uložit profil</value>
</data>
<data name="tSBCancel.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 24</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>Zrušit</value>
</data>
<data name="tSBKeepSize.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 24</value>
</data>
<data name="tSBKeepSize.Text" xml:space="preserve">
<value>Pamatovat si velikost okna</value>
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>67, 24</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>Nový</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>Vytvořit nový profil</value>
</data>
<data name="tsBEditProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>80, 24</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>Změnit</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>Upravit vybraný profil (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>94, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>Odstranit</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>Odstranit vybraný profil (Del)</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>105, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>Duplikovat</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Duplikovat vybraný profil (Ctrl+D)</value>
</data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>107, 24</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>Importovat</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>Importovat profil</value>
</data>
<data name="tSBExportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>105, 24</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>Exportovat</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Exportovat vybraný profil</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Automatické profily</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Nastavení</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 21</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>Skrýt DS4 ovladač</value>
</data>
<data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>289, 21</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Pro změnu profilu přejeďte po touchpadu</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>189, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Spustit při startu systému</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>173, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Spustit minimalizovaně</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>125, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>Zobrazit oznámení</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Žádný</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Pouze varování</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Vše</value>
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>201, 21</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Odpojit od BT při zastavení</value>
</data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>266, 28</value>
</data>
<data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>174, 2</value>
</data>
<data name="lbMsLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>237, 5</value>
</data>
<data name="cBFlashWhenLate.Size" type="System.Drawing.Size, System.Drawing">
<value>177, 21</value>
</data>
<data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>Blikat při vysoké latenci</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>181, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>Zavřít při minimalizování</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>126, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>Rychlé nabíjení</value>
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>348, 21</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Při aktualizaci stáhnout také nové jazykové balíčky</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>253, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>Při spuštění kontrolovat aktualizace</value>
</data>
<data name="pNUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>289, 28</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>hodin</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>dní</value>
</data>
<data name="cBUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>211, 0</value>
</data>
<data name="lbCheckEvery.Size" type="System.Drawing.Size, System.Drawing">
<value>128, 17</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>Kontrolovat kažých</value>
</data>
<data name="nUDUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>148, 1</value>
</data>
<data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>253, 28</value>
</data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>127, 17</value>
</data>
<data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Použít Xinput porty</value>
</data>
<data name="nUDXIPorts.Location" type="System.Drawing.Point, System.Drawing">
<value>146, 1</value>
</data>
<data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing">
<value>209, 4</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>369, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>185, 85</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>93, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>Složka profilu</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>102, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>Ovládací panel</value>
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>177, 17</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>Odinstalovat VBus ovladač</value>
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 17</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>Nastavení ovladače</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>162, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>Zkontrolovat aktualizace</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Protokol</value>
</data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 56</value>
</data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>213, 26</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Použít barvu profilu</value>
</data>
<data name="useCustomColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>213, 26</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Použít vlastní barvu</value>
</data>
</root>

View File

@ -0,0 +1,601 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="chTime.Text" xml:space="preserve">
<value>Χρόνος</value>
</data>
<data name="chData.Text" xml:space="preserve">
<value>Δεδομένα</value>
</data>
<data name="btnStartStop.Text" xml:space="preserve">
<value>Εκκίνηση</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>Καθαρισμός</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>343, 192</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Επεξεργασία προφίλ για χειριστήριο 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Επεξεργασία προφίλ για χειριστήριο 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Επεξεργασία προφίλ για χειριστήριο 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Επεξεργασία προφίλ για χειριστήριο 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Έναρξη</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Άνοιγμα</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Έξοδος (Μεσαίο κουμπί)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Χειριστήρια</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Σύνδεσε το DS4 αποκλειστικά(δοκιμαστικό)</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1076, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>513, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1022, 94</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>Επεξεργασία</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1022, 130</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>Επεξεργασία</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>867, 23</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1022, 58</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>Επεξεργασία</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>867, 59</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>867, 95</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1022, 22</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>Επεξεργασία</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>867, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>858, 0</value>
</data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>156, 18</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>Επιλεγμένο Προφίλ</value>
</data>
<data name="lbID.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 18</value>
</data>
<data name="lbID.Text" xml:space="preserve">
<value>Ταυτότητα</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>485, 0</value>
</data>
<data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing">
<value>94, 18</value>
</data>
<data name="lbStatus.Text" xml:space="preserve">
<value>Κατάσταση</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>708, 0</value>
</data>
<data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 18</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>Μπαταρία</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>728, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>728, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>728, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>728, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>513, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>513, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>513, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1076, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1076, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1076, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>Δεν έχουν συνδεθεί χειριστήρια(Μέγιστος αριθμός 4)</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Προφίλ</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>275, 264</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>Επεξεργασία</value>
</data>
<data name="assignToController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Αναθέστε στο χειριστήριο 1</value>
</data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Αναθέστε στο χειριστήριο 2</value>
</data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Αναθέστε στο χειριστήριο 3</value>
</data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Αναθέστε στο χειριστήριο 4</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>Διαγραφή</value>
</data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Αντιγραφή</value>
</data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>Νέο προφίλ</value>
</data>
<data name="importToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>Εισαγωγή</value>
</data>
<data name="exportToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 26</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Εξαγωγή</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Επιλογές Προφίλ</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>111, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>Όνομα προφίλ:</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>&lt;γράψτε όνομα προφίλ εδώ&gt;</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>Αποθήκευση Προφίλ</value>
</data>
<data name="tSBCancel.Size" type="System.Drawing.Size, System.Drawing">
<value>98, 24</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>Ακύρωση</value>
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>110, 24</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>Καινούργιο</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>Δημιουργία καινούργιου Προφίλ</value>
</data>
<data name="tsBEditProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>119, 24</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>Επεξεργασία</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>Επεξεργασία Επιλεγμένου Προφίλ (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>101, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>Διαγραφή</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>Διαγραφή επιλεγμένων προφίλ (Διαγραφή)</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>107, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>Αντιγραφή</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Αντιγραφή Επιλεγμένου Προφίλ (Ctrl+D)</value>
</data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 24</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>Εισαγωγή</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>Εισαγωγή Προφίλ</value>
</data>
<data name="tSBExportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>94, 24</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>Εξαγωγή</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Εξαγωγή Επιλεγμένου Προφίλ</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Αυτόματα προφίλ</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Ρυθμίσεις</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 21</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>Απόκρυψη χειριστηρίου DS4</value>
</data>
<data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>313, 21</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Σύρετε το Touchpad για να αλλάξετε προφίλ</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>199, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Άνοιγμα κατα την εκκίνηση</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Έναρξη με μορφή ελαχιστοποιημένου παραθύρου</value>
</data>
<data name="panel1.Size" type="System.Drawing.Size, System.Drawing">
<value>309, 28</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>158, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>Εμφάνιση Ειδοποιήσεων</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Τίποτα</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Μόνο προϊδοποιήσεις</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Όλα</value>
</data>
<data name="cBoxNotifications.Location" type="System.Drawing.Point, System.Drawing">
<value>173, 1</value>
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 21</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Αποσύνδεση από το bluetooth όταν σταματάει</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>208, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>Κλείσιμο Ελαχιστοποίημένων</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>Γρήγορη Φόρτιση</value>
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>257, 21</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Κατέβασμα γλώσσας με αναβάθμιση</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>309, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>Έλεγχος για ενημερώσεις κατά την εκκίνηση</value>
</data>
<data name="pNUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 28</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>Ώρες</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>Ημέρες</value>
</data>
<data name="cBUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>167, 0</value>
</data>
<data name="lbCheckEvery.Size" type="System.Drawing.Size, System.Drawing">
<value>98, 17</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>Έλεγχος Κάθε</value>
</data>
<data name="nUDUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>104, 1</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>363, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 85</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>111, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>Φάκελος προφίλ</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>113, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>Πίνακας ελέγχου</value>
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>196, 17</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>Απεγκατάσταση οδηγού VBus</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>168, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>Έλεγχος για ενημερώσεις</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Καταγραφή</value>
</data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>333, 56</value>
</data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>332, 26</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Χρήση Χρώματος Προφίλ</value>
</data>
<data name="useCustomColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>332, 26</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Χρήση Προσαρμοσμένου Χρώματος</value>
</data>
</root>

View File

@ -0,0 +1,631 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="chTime.Text" xml:space="preserve">
<value>Aika</value>
</data>
<data name="btnStartStop.Text" xml:space="preserve">
<value>Käynnistä</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbLastMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>881, 22</value>
</data>
<data name="llbHelp.Location" type="System.Drawing.Point, System.Drawing">
<value>894, 11</value>
</data>
<data name="llbHelp.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 17</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>Pikanäppäimet/Tietoja</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>Poista kaikki</value>
</data>
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>312, 192</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>311, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Muokkaa asetusprofiilia (1. ohjain)</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>311, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Muokkaa asetusprofiilia (2. ohjain)</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>311, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Muokkaa asetusprofiilia (3. ohjain)</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>311, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Muokkaa asetusprofiilia (4. ohjain)</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>308, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>311, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Käynnistä</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>311, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Avaa</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>311, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Poistu (Klikkaa hiiren rullaa)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Ohjaimet</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Liitä vain DS4-ohjain (exclusive mode) (kokeellinen)</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1074, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>44, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1020, 94</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>Muokkaa</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1020, 130</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>Muokkaa</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>874, 23</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1020, 58</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>Muokkaa</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>874, 59</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>874, 95</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1020, 22</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>Muokkaa</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>874, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>890, 0</value>
</data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>105, 18</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>Valittu profiili</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>525, 0</value>
</data>
<data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 18</value>
</data>
<data name="lbStatus.Text" xml:space="preserve">
<value>Tila</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 0</value>
</data>
<data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>45, 18</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>Akku</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1074, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>44, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1074, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>44, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1074, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>44, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>Ei liitettyjä ohjaimia (Max. 4)</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Profiilit</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 264</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>Muokkaa</value>
</data>
<data name="assignToController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Aseta 1.ohjaimeen</value>
</data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Aseta 2.ohjaimeen</value>
</data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Aseta 3.ohjaimeen</value>
</data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Aseta 4.ohjaimeen</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>Poista (Del)</value>
</data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Kloonaa (Ctrl+D)</value>
</data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>Uusi profiili</value>
</data>
<data name="importToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>Tuo asetukset</value>
</data>
<data name="exportToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Vie asetukset</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Profiilin asetukset</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>96, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>Profiilin nimi:</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>Kirjoita profiilin nimi tähän</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>Tallenna profiili</value>
</data>
<data name="tSBCancel.Size" type="System.Drawing.Size, System.Drawing">
<value>82, 24</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>Peruuta</value>
</data>
<data name="tSBKeepSize.Size" type="System.Drawing.Size, System.Drawing">
<value>317, 24</value>
</data>
<data name="tSBKeepSize.Text" xml:space="preserve">
<value>Pidä tämä ikkunan koko sulkemisen jälkeen</value>
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>61, 24</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>Uusi</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>Luo uusi profiili</value>
</data>
<data name="tsBEditProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>93, 24</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>Muokkaa</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>Muokkaa valittua profiilia (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>72, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>Poista</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>Poista valitut profiilit (Delete)</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>88, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>Kloonaa</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Kloonaa valittu profiili (Ctrl+D)</value>
</data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>58, 24</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>Tuo</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>Tuo profiili(t)</value>
</data>
<data name="tSBExportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>54, 24</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>Vie</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Vie profiili(t)</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Automaattiset Profiilit</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Asetukset</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>110, 21</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>Piilota ohjain</value>
</data>
<data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>308, 21</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Vaihda profiilia pyykäisemällä kosketuslevyä</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Avaa ohjelma kun Windows käynnistetään</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Käynnistä pienennettynä</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>115, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>Näytä ilmoitukset</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Tyhjä</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Pelkät varoitukset</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Kaikki</value>
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>227, 21</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Katkaise Bluetooth suljettaessa</value>
</data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>377, 28</value>
</data>
<data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>285, 2</value>
</data>
<data name="lbMsLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>348, 5</value>
</data>
<data name="cBFlashWhenLate.Size" type="System.Drawing.Size, System.Drawing">
<value>282, 21</value>
</data>
<data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>Ohjaimen valo vilkkuu korkealla viiveellä</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>278, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>Piilota DS4 ilmoitusalueelle suljettaessa</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>95, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>Pikalataus</value>
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>215, 21</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Lataa kielipaketit päivittäessä</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>Tarkista päivitykset käynnistyessä</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>tuntia</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>päivää</value>
</data>
<data name="lbCheckEvery.Size" type="System.Drawing.Size, System.Drawing">
<value>89, 17</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>Tarkista joka</value>
</data>
<data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>251, 28</value>
</data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 17</value>
</data>
<data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Käytä Xinput portteja</value>
</data>
<data name="nUDXIPorts.Location" type="System.Drawing.Point, System.Drawing">
<value>144, 1</value>
</data>
<data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing">
<value>207, 4</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>398, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 85</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>87, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>Profiilikansio</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>99, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>Ohjauspaneeli</value>
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>115, 17</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>Poista VBus ajuri</value>
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>190, 17</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>Ohjaimen/Ajureiden asennus</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>129, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>Tarkista päivitykset</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Loki</value>
</data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>202, 56</value>
</data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>201, 26</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Käytä profiiliväriä</value>
</data>
<data name="useCustomColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>201, 26</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Käytä profiiliväriä</value>
</data>
</root>

View File

@ -0,0 +1,628 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="chTime.Text" xml:space="preserve">
<value>Idő</value>
</data>
<data name="chData.Text" xml:space="preserve">
<value>Adat</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>Gyorsgombok/</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>Töröl</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>346, 192</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>345, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Profil szerkesztése az 1-es Vezérlőhöz</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>345, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Profil szerkesztése az 2-es Vezérlőhöz</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>345, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Profil szerkesztése az 3-mas Vezérlőhöz</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>345, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Profil szerkesztése az 4-es Vezérlőhöz</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>342, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>345, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Indítás a háttérben</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>345, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Megnyitás</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>345, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Kilépés (Középső Egérgomb)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Vezérlők</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>DS4 exkluzív csatlakoztatása (kísérleti)</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1077, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>41, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1023, 94</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>Szerkeszt</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1023, 130</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>Szerkeszt</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>875, 23</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1023, 58</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>Szerkeszt</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>875, 59</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>875, 95</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1023, 22</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>Szerkeszt</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>875, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>874, 0</value>
</data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 18</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>Kiválasztott Profil</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>510, 0</value>
</data>
<data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 18</value>
</data>
<data name="lbStatus.Text" xml:space="preserve">
<value>Státusz</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>713, 0</value>
</data>
<data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>102, 18</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>Akkumulátor</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>523, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1077, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>41, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1077, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>41, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1077, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>41, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>Nincs vezérlő csatlakoztatva (Maximum 4)</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Profilok</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>338, 264</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>Szerkeszt</value>
</data>
<data name="assignToController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Hozzárendelés az 1-es kontrollerhez</value>
</data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Hozzárendelés az 2-es kontrollerhez</value>
</data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Hozzárendelés az 3-mas kontrollerhez</value>
</data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Hozzárendelés az 4-es kontrollerhez</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>Törlés (Del)</value>
</data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Duplázás (Ctrl+D)</value>
</data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>Új Profil</value>
</data>
<data name="importToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>Importálás</value>
</data>
<data name="exportToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 26</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Exportálás</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Profil Beállítások</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>85, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>Profil Neve:</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>&lt;ide írd a profil nevét&gt;</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>128, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>Profil Mentése</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>Mégse</value>
</data>
<data name="tSBKeepSize.Text" xml:space="preserve">
<value>Ablakméret megtartása bezáráskor</value>
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>47, 24</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>Új</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>Új Profil Készítése</value>
</data>
<data name="tsBEditProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>108, 24</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>Szerkesztés</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>Kiválaszott profil szerkeztése (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>72, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>Törlés</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>Kiválasztott Profil Törlése (Delete)</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>87, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>Másolás</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Kiválaszott profil másolása (Ctrl + D)</value>
</data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>104, 24</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>Importálás</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>Profil(ok) Importálása</value>
</data>
<data name="tSBExportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>102, 24</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>Exportálás</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Kiválaszott profil Exportálása</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Automatikus Profilváltás</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Beállítások</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>165, 21</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>DS4 vezérlő elrejtése</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Profilváltás a Touchpad simításával</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>159, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Indítás a rendszerrel</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Indítás a háttérben</value>
</data>
<data name="panel1.Size" type="System.Drawing.Size, System.Drawing">
<value>316, 28</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>169, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>Értesítések megjelenítése</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Semmi</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Csak figyelmeztetések</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Minden</value>
</data>
<data name="cBoxNotifications.Location" type="System.Drawing.Point, System.Drawing">
<value>180, 1</value>
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>274, 21</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Bluetooth lecsatlakoztatása leállításkor</value>
</data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>387, 28</value>
</data>
<data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>295, 2</value>
</data>
<data name="lbMsLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>358, 5</value>
</data>
<data name="cBFlashWhenLate.Size" type="System.Drawing.Size, System.Drawing">
<value>292, 21</value>
</data>
<data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>Lightbar villogtatása magas késleltetéssel</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>154, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>Bezárás minimalizál</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>102, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>Gyorstöltés</value>
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>250, 21</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Nyelvi csomag letöltése frissítéskor</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>316, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>Frissítések ellenőrzése a program indításakor</value>
</data>
<data name="pNUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>273, 28</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>óra</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>nap</value>
</data>
<data name="cBUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>195, 0</value>
</data>
<data name="lbCheckEvery.Size" type="System.Drawing.Size, System.Drawing">
<value>124, 17</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>Ellenőrzés minden</value>
</data>
<data name="nUDUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>132, 1</value>
</data>
<data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>292, 28</value>
</data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>166, 17</value>
</data>
<data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Xinput Portok használata</value>
</data>
<data name="nUDXIPorts.Location" type="System.Drawing.Point, System.Drawing">
<value>185, 1</value>
</data>
<data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing">
<value>248, 4</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>408, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>162, 85</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>98, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>Profil könyvtár</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>96, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>Vezérlő Panel</value>
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 17</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>VBus Driver törlése</value>
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>154, 17</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>Vezérlő/Driver beállítás</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>137, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>Frissítések keresése</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Napló</value>
</data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 56</value>
</data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>243, 26</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Profilban megadott szín</value>
</data>
<data name="useCustomColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>243, 26</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Egyedi szín használata</value>
</data>
</root>

View File

@ -0,0 +1,577 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="chTime.Text" xml:space="preserve">
<value>Waktu</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="llbHelp.Location" type="System.Drawing.Point, System.Drawing">
<value>926, 11</value>
</data>
<data name="llbHelp.Size" type="System.Drawing.Size, System.Drawing">
<value>116, 17</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>Hotkeys/Tentang</value>
</data>
<data name="btnStartStop.Text" xml:space="preserve">
<value>Mulai</value>
</data>
<data name="lbLastMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>913, 22</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>Bersihkan</value>
</data>
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>237, 192</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Edit Profil Controller 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Edit Profil Controller 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Edit Profil Controller 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Edit Profil Controller 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>233, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Mulai</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Buka</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Keluar (Mouse Tengah)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Controller</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Sambung secara khusus (eksperimental)</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1070, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>520, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1016, 94</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1016, 130</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>870, 23</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1016, 58</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>870, 59</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>870, 95</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1016, 22</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>870, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>887, 0</value>
</data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>103, 18</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>Profil terpilih</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>512, 0</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>730, 0</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>Baterai</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>738, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>738, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>738, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>738, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>520, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>520, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>520, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1070, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1070, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1070, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>Controller tidak terhubung (Max. 4)</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Profil</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>246, 264</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Tetapkan ke Controller 1</value>
</data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Tetapkan ke Controller 2</value>
</data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Tetapkan ke Controller 3</value>
</data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Tetapkan ke Controller 4</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>Hapus (Del)</value>
</data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Gandakan (Ctrl+D)</value>
</data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>Profil Baru</value>
</data>
<data name="importToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="exportToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 26</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Pengaturan Profil</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>Nama Profil:</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>&lt;masukkan nama profil disini&gt;</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>122, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>Simpan Profil</value>
</data>
<data name="tSBCancel.Size" type="System.Drawing.Size, System.Drawing">
<value>67, 24</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>Batal</value>
</data>
<data name="tSBKeepSize.Size" type="System.Drawing.Size, System.Drawing">
<value>297, 24</value>
</data>
<data name="tSBKeepSize.Text" xml:space="preserve">
<value>Tetapkan ukuran jendela setelah ditutup</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>Baru</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>Buat Profil Baru</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>Edit profil yang terpilih (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>Hapus</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>Hapus profil yang terpilih (Delete)</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>99, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>Gandakan</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Gandakan profil yang terpilih (Ctrl+D)</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>Import Profil</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Export profil yang terpilih</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Profil Otomatis</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Pengaturan</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>211, 21</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>Sembunyikan Controller DS4</value>
</data>
<data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>283, 21</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Gesek Touchpad untuk mengganti profil</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>263, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Jalankan ketika komputer dinyalakan</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>181, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Mulai dengan Minimized</value>
</data>
<data name="panel1.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 28</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>Tampuilkan pemberitahuan</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Tidak Ada</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Hanya Peringatan</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Semua</value>
</data>
<data name="cBoxNotifications.Location" type="System.Drawing.Point, System.Drawing">
<value>184, 1</value>
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>332, 21</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Hilangkan sambungan Bluetooth ketika berhenti</value>
</data>
<data name="cBFlashWhenLate.Size" type="System.Drawing.Size, System.Drawing">
<value>306, 21</value>
</data>
<data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>Kedip Lightbar ketika tingkat Latency Tinggi</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>Tutup dengan minimizes</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>117, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>Charge Cepat</value>
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>320, 21</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Unduh Kumpulan Bahasa dengan Pembaruan</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>199, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>Cek Pembaruan saat mulai</value>
</data>
<data name="pNUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 28</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>Jam</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>Hari</value>
</data>
<data name="cBUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>154, 0</value>
</data>
<data name="lbCheckEvery.Size" type="System.Drawing.Size, System.Drawing">
<value>74, 17</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>Cek setiap</value>
</data>
<data name="nUDUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>91, 1</value>
</data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>117, 17</value>
</data>
<data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Pakai Port Xinput</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>353, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>222, 85</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>Folder Profil</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>122, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>Panel Pengaturan</value>
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 17</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>Hapus pemasangan Driver VBus</value>
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>189, 17</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>Pengaturan Controller/Driver</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>171, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>Cek pembaruan sekarang</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Rekor</value>
</data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 56</value>
</data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>235, 26</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Gunakan Warna Profil</value>
</data>
<data name="useCustomColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>235, 26</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Gunakan Aturan Warna</value>
</data>
</root>

View File

@ -0,0 +1,488 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnStartStop.Text" xml:space="preserve">
<value>開始</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>クリア</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>295, 192</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>コントローラー 1 のプロファイルを編集</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>コントローラー 2 のプロファイルを編集</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>コントローラー 3 のプロファイルを編集</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>コントローラー 4 のプロファイルを編集</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>291, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>開始</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>開く</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>294, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>終了 (中クリック)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>コントローラー</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>530, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 94</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>編集</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 130</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>編集</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 23</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 58</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>編集</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 59</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 95</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1031, 22</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>編集</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>885, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>890, 0</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>530, 0</value>
</data>
<data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing">
<value>40, 18</value>
</data>
<data name="lbStatus.Text" xml:space="preserve">
<value>状態</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>741, 0</value>
</data>
<data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>67, 18</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>バッテリー</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>752, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>752, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>752, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>752, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>530, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>530, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>530, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1085, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>コントローラーが接続されていません (最大 4)</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>プロファイル</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>編集</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>削除 (Delete)</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>複製 (Ctrl+D)</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>新規プロファイル</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>インポート</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>エクスポート</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>プロファイル名:</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>138, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>プロファイルを保存</value>
</data>
<data name="tSBCancel.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 24</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>キャンセル</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>新規</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>新規プロファイルを作成</value>
</data>
<data name="tsBEditProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>63, 24</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>編集</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>選択したプロファイルを編集 (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>63, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>削除</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>選択したプロファイルを削除 (Delete)</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>63, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>複製</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>選択したプロファイルを複製 (Ctrl+D)</value>
</data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 24</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>インポート</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>プロファイルをインポート</value>
</data>
<data name="tSBExportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 24</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>エクスポート</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>選択したプロファイルをエクスポート</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>自動プロファイル</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>設定</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>155, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>システム起動時に開始</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>150, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>最小化の状態で起動</value>
</data>
<data name="panel1.Size" type="System.Drawing.Size, System.Drawing">
<value>223, 28</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>通知を表示</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>なし</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>警告のみ</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>すべて</value>
</data>
<data name="cBoxNotifications.Location" type="System.Drawing.Point, System.Drawing">
<value>87, 1</value>
</data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 28</value>
</data>
<data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>229, 2</value>
</data>
<data name="lbMsLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>292, 5</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>150, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>閉じるボタンで最小化</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>急速充電</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>起動時にアップデートを確認</value>
</data>
<data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 28</value>
</data>
<data name="nUDXIPorts.Location" type="System.Drawing.Point, System.Drawing">
<value>120, 1</value>
</data>
<data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing">
<value>183, 4</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>342, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>209, 85</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>106, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>プロファイルフォルダ</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>104, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>コントロールパネル</value>
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>201, 17</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>コントローラーとドライバのセットアップ</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>144, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>今すぐアップデートを確認</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>ログ</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>Inherit</value>
</data>
</root>

View File

@ -0,0 +1,360 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 1 로 할당</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 2 로 할당</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 3 로 할당</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 4 로 할당</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>편집</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>편집</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>편집</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>편집</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>삭제</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>DS4 만 연결하기 ( 실험버전 )</value>
</data>
<data name="btnStartStop.Text" xml:space="preserve">
<value>시작</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>닫기시 최소화</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>중지시 연결 해제</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>업데이트와 함께 언어팩을 다운</value>
</data>
<data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>지연이 높을시 등이 반짝임</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>없음</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>경고만 표시</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>전부</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>고속 충전</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>터치패드를 스와이프하여 프로파일을 바꿉니다</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>시작시 업데이트 확인</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>시간</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>일</value>
</data>
<data name="chData.Text" xml:space="preserve">
<value>데이터</value>
</data>
<data name="chTime.Text" xml:space="preserve">
<value>시간</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>삭제 (Del)</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>복사 (Ctrl+D)</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 1 프로파일 편집</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 2 프로파일 편집</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 3 프로파일 편집</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>컨트롤러 4 프로파일 편집</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>편집</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>종료 (마우스 중간버튼)</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>보내기</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>DS4 컨트롤러 숨기기</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>들여오기</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>배터리</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>체크 간격 매</value>
</data>
<data name="lbID.Text" xml:space="preserve">
<value>ID</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>컨트롤러 없음 (최대 4개)</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>알림 표시</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>선택된 프로파일</value>
</data>
<data name="lbStatus.Text" xml:space="preserve">
<value>상태</value>
</data>
<data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Xinput 포트를 사용함</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>프로파일 폴더</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>컨트롤러/드라이버 설치</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>VBus 드라이버 삭제</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>핫키/도움말</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>지금 업데이트 확인하기</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>컨트롤 패널</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>새 프로파일</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>열기</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>최소화 상태로 시작</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>시작</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>부팅시 시작</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>자동 프로파일</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>컨트롤러</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>로그</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>프로파일</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>설정</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>프로파일 이름:</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>취소</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>삭제</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>선택된 프로파일 삭제 (Delete)</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>복사</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>선택된 프로파일 복사 (Ctrl+D)</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>편집</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>선택된 프로파일 편집 (Enter)</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>보내기</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>선택된 프로파일 보내기</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>들여오기</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>선택된 프로파일 들여오기</value>
</data>
<data name="tSBKeepSize.Text" xml:space="preserve">
<value>종료 후에도 창 사이즈를 기억함</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>새로 만들기</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>프로파일 만들기</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>프로파일 저장</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>프로파일 옵션</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>&lt;프로파일 이름을 써넣으십시오&gt;</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>사용자 지정 색 사용</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>프로파일 색 사용</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,631 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="chTime.Text" xml:space="preserve">
<value>Čas</value>
</data>
<data name="chData.Text" xml:space="preserve">
<value>Podatki</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbTest.Location" type="System.Drawing.Point, System.Drawing">
<value>792, 12</value>
</data>
<data name="btnStartStop.Text" xml:space="preserve">
<value>Zaženi</value>
</data>
<data name="lbLastMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>916, 22</value>
</data>
<data name="llbHelp.Location" type="System.Drawing.Point, System.Drawing">
<value>929, 11</value>
</data>
<data name="llbHelp.Size" type="System.Drawing.Size, System.Drawing">
<value>113, 17</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>Hotkeys/ O tem?</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>Počisti</value>
</data>
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>250, 192</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>249, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Uredi račun za Krmilnik 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>249, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Uredi račun za Krmilnik 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>249, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Uredi račun za Krmilnik 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>249, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>uredi račun za Krmilnik 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>246, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>249, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Zaženi</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>249, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Odpri</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>249, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Izhod (srednja miška)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Krmilniki</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Poveži izključno z DS4</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1079, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>39, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>526, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1025, 94</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>Uredi</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1025, 130</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>Uredi</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>879, 23</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1025, 58</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>Uredi</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>879, 59</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>879, 95</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1025, 22</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>Uredi</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>879, 131</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>900, 0</value>
</data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>96, 18</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>Izberi račun</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>517, 0</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>736, 0</value>
</data>
<data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 18</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>Baterija</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>746, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>526, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>526, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>526, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1079, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>39, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1079, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>39, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1079, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>39, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>Ni povezanih Krmilnikov (Max 4)</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Računi</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>208, 264</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>Uredi</value>
</data>
<data name="assignToController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Dodeli Krmilniku 1</value>
</data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Dodeli Krmilniku 2</value>
</data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Dodeli Krmilniku 3</value>
</data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Dodeli Krmilniku 4</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>Izbriši (Del)</value>
</data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Podvoji (Ctrl+D)</value>
</data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>Nov račun</value>
</data>
<data name="importToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>Uvozi</value>
</data>
<data name="exportToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 26</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Izvozi</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Možnosti računa</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>85, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>Ime računa:</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>&lt;tukaj napiši ime računa&gt;</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>114, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>Shrani račun</value>
</data>
<data name="tSBCancel.Size" type="System.Drawing.Size, System.Drawing">
<value>80, 24</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>Prekliči</value>
</data>
<data name="tSBKeepSize.Size" type="System.Drawing.Size, System.Drawing">
<value>258, 24</value>
</data>
<data name="tSBKeepSize.Text" xml:space="preserve">
<value>Obdrži to velikost okna ob zaprtju</value>
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>69, 24</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>Novo</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>Naredi nov račun</value>
</data>
<data name="tsBEditProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>69, 24</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>Uredi</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>Uredi izbrani račun (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>72, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>Izbriši</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>Izbriši izbrani račun (Delete)</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>82, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>Podvoji</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Podvoji izbrani račun (Ctrl+D)</value>
</data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 24</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>Uvozi</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>Uvozi račun/e</value>
</data>
<data name="tSBExportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>71, 24</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>Izvozi</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Izvozi izbrani račun</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Avtomatični računi</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Nastavitve</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 21</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>Skrij DS4 Krmilnik</value>
</data>
<data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>318, 21</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Podrsaj po Touchpad-u za zamenjavo računa</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Zaženi ob odprtju programa</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>156, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Zaženi pomanjšnice</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>110, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>Pokaži obvestila</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Noben</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Samo opozorila</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Vse</value>
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>250, 21</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Odklopi od Bluetooth-a ob ustavitvi</value>
</data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>299, 28</value>
</data>
<data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>207, 2</value>
</data>
<data name="lbMsLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>270, 5</value>
</data>
<data name="cBFlashWhenLate.Size" type="System.Drawing.Size, System.Drawing">
<value>205, 21</value>
</data>
<data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>Utripaj z lučko ob zakasnitvi</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>Zapri pomanjšnice</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>121, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>Hitro polnjenje</value>
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>293, 21</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Prenesite jezikovni paket z posodobitvami</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>Preglej za posodobitve ob zagonu</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>ur</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>dni</value>
</data>
<data name="lbCheckEvery.Size" type="System.Drawing.Size, System.Drawing">
<value>93, 17</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>Preglej vsako</value>
</data>
<data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>262, 28</value>
</data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>145, 17</value>
</data>
<data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Uporabi Xinput vhode</value>
</data>
<data name="nUDXIPorts.Location" type="System.Drawing.Point, System.Drawing">
<value>155, 1</value>
</data>
<data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing">
<value>218, 4</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>339, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>192, 85</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>145, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>Mapa z računi (profili)</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>115, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>Nadzorna plošča</value>
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>151, 17</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>Odstrani VBus gonilnik</value>
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 17</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>Krmilnik/Gonilnik namestitev</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>152, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>Preglej za posodobitev</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Logaritem</value>
</data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>237, 56</value>
</data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Uporabi barvo računa</value>
</data>
<data name="useCustomColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>236, 26</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Uporabi barvo po meri</value>
</data>
</root>

View File

@ -0,0 +1,448 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lvDebug.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbTest.ToolTip" xml:space="preserve">
<value />
</data>
<data name="btnStartStop.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbLastMessage.ToolTip" xml:space="preserve">
<value />
</data>
<data name="llbHelp.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pnlButton.ToolTip" xml:space="preserve">
<value />
</data>
<data name="btnClear.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cMTaskbar.ToolTip" xml:space="preserve">
<value />
</data>
<data name="btnConnectDS4Win10.ToolTip" xml:space="preserve">
<value />
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1083, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 28</value>
</data>
<data name="bnLight3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>528, 26</value>
</data>
<data name="pBStatus1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1029, 94</value>
</data>
<data name="bnEditC3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1029, 130</value>
</data>
<data name="bnEditC4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>883, 24</value>
</data>
<data name="cBController1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1029, 58</value>
</data>
<data name="bnEditC2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>883, 60</value>
</data>
<data name="cBController2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>883, 96</value>
</data>
<data name="cBController3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1029, 22</value>
</data>
<data name="bnEditC1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>883, 132</value>
</data>
<data name="cBController4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>888, 0</value>
</data>
<data name="lbSelectedProfile.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbID.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>520, 0</value>
</data>
<data name="lbStatus.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>742, 0</value>
</data>
<data name="lbBattery.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>750, 27</value>
</data>
<data name="lbBatt1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>750, 63</value>
</data>
<data name="lbBatt2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>750, 99</value>
</data>
<data name="lbBatt3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>750, 135</value>
</data>
<data name="lbBatt4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>528, 62</value>
</data>
<data name="pBStatus2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>528, 98</value>
</data>
<data name="pBStatus3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>528, 134</value>
</data>
<data name="pBStatus4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1083, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 28</value>
</data>
<data name="bnLight1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1083, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 28</value>
</data>
<data name="bnLight2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1083, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 28</value>
</data>
<data name="bnLight4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tLPControllers.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbNoControllers.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabControllers.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cMProfile.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lBProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tSOptions.ToolTip" xml:space="preserve">
<value />
</data>
<data name="toolStrip1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabAutoProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="hideDS4CheckBox.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBSwipeProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="StartWindowsCheckBox.ToolTip" xml:space="preserve">
<value />
</data>
<data name="startMinimizedCheckBox.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbNotifications.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBoxNotifications.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBDisconnectBT.ToolTip" xml:space="preserve">
<value />
</data>
<data name="nUDLatency.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbMsLatency.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBFlashWhenLate.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBCloseMini.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBQuickCharge.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBDownloadLangauge.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBUpdate.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBUpdateTime.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbCheckEvery.ToolTip" xml:space="preserve">
<value />
</data>
<data name="nUDUpdateTime.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pNUpdate.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbUseXIPorts.ToolTip" xml:space="preserve">
<value />
</data>
<data name="nUDXIPorts.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbLastXIPort.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pnlXIPorts.ToolTip" xml:space="preserve">
<value />
</data>
<data name="linkProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lnkControllers.ToolTip" xml:space="preserve">
<value />
</data>
<data name="linkUninstall.ToolTip" xml:space="preserve">
<value />
</data>
<data name="linkSetup.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lLBUpdate.ToolTip" xml:space="preserve">
<value />
</data>
<data name="flowLayoutPanel1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="fLPSettings.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabSettings.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabLog.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabMain.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cMCustomLed.ToolTip" xml:space="preserve">
<value />
</data>
<data name="$this.ToolTip" xml:space="preserve">
<value />
</data>
</root>

View File

@ -0,0 +1,655 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="chTime.Text" xml:space="preserve">
<value>Час</value>
</data>
<data name="chData.Text" xml:space="preserve">
<value>Дані</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="llbHelp.Location" type="System.Drawing.Point, System.Drawing">
<value>822, 11</value>
</data>
<data name="llbHelp.Size" type="System.Drawing.Size, System.Drawing">
<value>205, 17</value>
</data>
<data name="llbHelp.Text" xml:space="preserve">
<value>Гарячі клавіші / Про програму</value>
</data>
<data name="btnStartStop.Location" type="System.Drawing.Point, System.Drawing">
<value>1035, 5</value>
</data>
<data name="btnStartStop.Size" type="System.Drawing.Size, System.Drawing">
<value>87, 29</value>
</data>
<data name="btnStartStop.Text" xml:space="preserve">
<value>Запустити</value>
</data>
<data name="lbLastMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>824, 22</value>
</data>
<data name="btnClear.Text" xml:space="preserve">
<value>Очистити</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 26</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Редагувати профіль Контролера 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 26</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Редагувати профіль Контролера 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 26</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Редагувати профіль Контролера 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 26</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Редагувати профіль Контролера 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>318, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 26</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Запустити</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 26</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Відкрити</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>321, 26</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Вихід</value>
</data>
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>322, 192</value>
</data>
<data name="btnConnectDS4Win10.Text" xml:space="preserve">
<value>Ексклюзивне підключення DS4 (експерементальне)</value>
</data>
<data name="bnLight3.Location" type="System.Drawing.Point, System.Drawing">
<value>1069, 94</value>
</data>
<data name="bnLight3.Size" type="System.Drawing.Size, System.Drawing">
<value>49, 28</value>
</data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>515, 26</value>
</data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>1015, 94</value>
</data>
<data name="bnEditC3.Text" xml:space="preserve">
<value>Редагувати</value>
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>1015, 130</value>
</data>
<data name="bnEditC4.Text" xml:space="preserve">
<value>Редагувати</value>
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>865, 24</value>
</data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>1015, 58</value>
</data>
<data name="bnEditC2.Text" xml:space="preserve">
<value>Редагувати</value>
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>865, 60</value>
</data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>865, 96</value>
</data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>1015, 22</value>
</data>
<data name="bnEditC1.Text" xml:space="preserve">
<value>Редагувати</value>
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>865, 132</value>
</data>
<data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>861, 0</value>
</data>
<data name="lbSelectedProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 18</value>
</data>
<data name="lbSelectedProfile.Text" xml:space="preserve">
<value>Обраний профіль</value>
</data>
<data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>504, 0</value>
</data>
<data name="lbStatus.Size" type="System.Drawing.Size, System.Drawing">
<value>62, 18</value>
</data>
<data name="lbStatus.Text" xml:space="preserve">
<value>Статус</value>
</data>
<data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>717, 0</value>
</data>
<data name="lbBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>72, 18</value>
</data>
<data name="lbBattery.Text" xml:space="preserve">
<value>Батарея</value>
</data>
<data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>731, 27</value>
</data>
<data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>731, 63</value>
</data>
<data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>731, 99</value>
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>731, 135</value>
</data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>515, 62</value>
</data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>515, 98</value>
</data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>515, 134</value>
</data>
<data name="bnLight1.Location" type="System.Drawing.Point, System.Drawing">
<value>1069, 22</value>
</data>
<data name="bnLight1.Size" type="System.Drawing.Size, System.Drawing">
<value>49, 28</value>
</data>
<data name="bnLight2.Location" type="System.Drawing.Point, System.Drawing">
<value>1069, 58</value>
</data>
<data name="bnLight2.Size" type="System.Drawing.Size, System.Drawing">
<value>49, 28</value>
</data>
<data name="bnLight4.Location" type="System.Drawing.Point, System.Drawing">
<value>1069, 130</value>
</data>
<data name="bnLight4.Size" type="System.Drawing.Size, System.Drawing">
<value>49, 28</value>
</data>
<data name="lbNoControllers.Text" xml:space="preserve">
<value>Контролери не підключено (Макс. 4)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Контролери</value>
</data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="editToolStripMenuItem.Text" xml:space="preserve">
<value>Редагувати</value>
</data>
<data name="assignToController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="assignToController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Присвоїти 1-му контролеру</value>
</data>
<data name="assignToController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="assignToController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Присвоїти 2-му контролеру</value>
</data>
<data name="assignToController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="assignToController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Присвоїти 3-му контролеру</value>
</data>
<data name="assignToController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="assignToController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Присвоїти 4-му контролеру</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>Видалити (Del)</value>
</data>
<data name="duplicateToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="duplicateToolStripMenuItem.Text" xml:space="preserve">
<value>Дублікат (Ctrl+D)</value>
</data>
<data name="newProfileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="newProfileToolStripMenuItem.Text" xml:space="preserve">
<value>Новий профіль</value>
</data>
<data name="importToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="importToolStripMenuItem.Text" xml:space="preserve">
<value>Імпорт</value>
</data>
<data name="exportToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 26</value>
</data>
<data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Експорт</value>
</data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>278, 264</value>
</data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>103, 24</value>
</data>
<data name="toolStripLabel1.Text" xml:space="preserve">
<value>Ім'я профілю:</value>
</data>
<data name="tSTBProfile.Text" xml:space="preserve">
<value>&lt;вкажіть ім'я профілю&gt;</value>
</data>
<data name="tSBSaveProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>157, 24</value>
</data>
<data name="tSBSaveProfile.Text" xml:space="preserve">
<value>Зберегти профіль</value>
</data>
<data name="tSBCancel.Size" type="System.Drawing.Size, System.Drawing">
<value>102, 24</value>
</data>
<data name="tSBCancel.Text" xml:space="preserve">
<value>Скасувати</value>
</data>
<data name="tSBKeepSize.Size" type="System.Drawing.Size, System.Drawing">
<value>293, 24</value>
</data>
<data name="tSBKeepSize.Text" xml:space="preserve">
<value>Зберегти розмір вікна після закриття</value>
</data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Опції профілю</value>
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>79, 24</value>
</data>
<data name="tsBNewProfle.Text" xml:space="preserve">
<value>Новий</value>
</data>
<data name="tsBNewProfle.ToolTipText" xml:space="preserve">
<value>Створити новий профіль</value>
</data>
<data name="tsBEditProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>109, 24</value>
</data>
<data name="tsBEditProfile.Text" xml:space="preserve">
<value>Редагувати</value>
</data>
<data name="tsBEditProfile.ToolTipText" xml:space="preserve">
<value>Редагувати обраний профіль (Enter)</value>
</data>
<data name="tsBDeleteProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>99, 24</value>
</data>
<data name="tsBDeleteProfile.Text" xml:space="preserve">
<value>Видалити</value>
</data>
<data name="tsBDeleteProfile.ToolTipText" xml:space="preserve">
<value>Батарея</value>
</data>
<data name="tSBDupProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>92, 24</value>
</data>
<data name="tSBDupProfile.Text" xml:space="preserve">
<value>Дублікат</value>
</data>
<data name="tSBDupProfile.ToolTipText" xml:space="preserve">
<value>Дублікат обраного профілю (Ctrl+D)</value>
</data>
<data name="tSBImportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>81, 24</value>
</data>
<data name="tSBImportProfile.Text" xml:space="preserve">
<value>Імпорт</value>
</data>
<data name="tSBImportProfile.ToolTipText" xml:space="preserve">
<value>Імпорт профілю або профілів</value>
</data>
<data name="tSBExportProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>88, 24</value>
</data>
<data name="tSBExportProfile.Text" xml:space="preserve">
<value>Експорт</value>
</data>
<data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Експорт обраного профілю</value>
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Профілі</value>
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Автопрофілі</value>
</data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>205, 21</value>
</data>
<data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>Приховати контролер DS4</value>
</data>
<data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>313, 21</value>
</data>
<data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Провести по тачпаді, щоб змінити профіль</value>
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>190, 21</value>
</data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Автозавантаження з ОС</value>
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>170, 21</value>
</data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Запускати згорнутим</value>
</data>
<data name="lbNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>151, 17</value>
</data>
<data name="lbNotifications.Text" xml:space="preserve">
<value>Показати сповіщення</value>
</data>
<data name="cBoxNotifications.Items" xml:space="preserve">
<value>Нічого</value>
</data>
<data name="cBoxNotifications.Items1" xml:space="preserve">
<value>Тільки попередження</value>
</data>
<data name="cBoxNotifications.Items2" xml:space="preserve">
<value>Все</value>
</data>
<data name="cBoxNotifications.Location" type="System.Drawing.Point, System.Drawing">
<value>157, 1</value>
</data>
<data name="panel1.Size" type="System.Drawing.Size, System.Drawing">
<value>293, 28</value>
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>273, 21</value>
</data>
<data name="cBDisconnectBT.Text" xml:space="preserve">
<value>При зупинці відключати від Bluetooth</value>
</data>
<data name="nUDLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>321, 2</value>
</data>
<data name="lbMsLatency.Location" type="System.Drawing.Point, System.Drawing">
<value>384, 5</value>
</data>
<data name="cBFlashWhenLate.Size" type="System.Drawing.Size, System.Drawing">
<value>324, 21</value>
</data>
<data name="cBFlashWhenLate.Text" xml:space="preserve">
<value>Мерехтіння світлопанелі при високій частоті</value>
</data>
<data name="panel2.Size" type="System.Drawing.Size, System.Drawing">
<value>413, 28</value>
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>234, 21</value>
</data>
<data name="cBCloseMini.Text" xml:space="preserve">
<value>При закритті згортати до трею</value>
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>137, 21</value>
</data>
<data name="cBQuickCharge.Text" xml:space="preserve">
<value>Швидка зарядка</value>
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>364, 21</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Завантажувати мовний пакет разом з оновленням</value>
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>268, 21</value>
</data>
<data name="cBUpdate.Text" xml:space="preserve">
<value>Перевірка оновлень під час запуску</value>
</data>
<data name="cBUpdateTime.Items" xml:space="preserve">
<value>годин</value>
</data>
<data name="cBUpdateTime.Items1" xml:space="preserve">
<value>днів</value>
</data>
<data name="cBUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>211, 0</value>
</data>
<data name="lbCheckEvery.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 17</value>
</data>
<data name="lbCheckEvery.Text" xml:space="preserve">
<value>Перевірка кожного</value>
</data>
<data name="nUDUpdateTime.Location" type="System.Drawing.Point, System.Drawing">
<value>148, 1</value>
</data>
<data name="pNUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>289, 28</value>
</data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>209, 17</value>
</data>
<data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Використовувати порти Xinput</value>
</data>
<data name="nUDXIPorts.Location" type="System.Drawing.Point, System.Drawing">
<value>217, 1</value>
</data>
<data name="lbLastXIPort.Location" type="System.Drawing.Point, System.Drawing">
<value>280, 4</value>
</data>
<data name="pnlXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>324, 28</value>
</data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 17</value>
</data>
<data name="linkProfiles.Text" xml:space="preserve">
<value>Папка з профілями</value>
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 17</value>
</data>
<data name="lnkControllers.Text" xml:space="preserve">
<value>Панель керування</value>
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>168, 17</value>
</data>
<data name="linkUninstall.Text" xml:space="preserve">
<value>Видалити VBus драйвер</value>
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>259, 17</value>
</data>
<data name="linkSetup.Text" xml:space="preserve">
<value>Встановлення контролера / драйвера</value>
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>158, 17</value>
</data>
<data name="lLBUpdate.Text" xml:space="preserve">
<value>Перевірити оновлення</value>
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>434, 13</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>267, 85</value>
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Налаштування</value>
</data>
<data name="tabLog.Text" xml:space="preserve">
<value>Журнал</value>
</data>
<data name="useProfileColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>278, 26</value>
</data>
<data name="useProfileColorToolStripMenuItem.Text" xml:space="preserve">
<value>Використати колір профілю</value>
</data>
<data name="useCustomColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>278, 26</value>
</data>
<data name="useCustomColorToolStripMenuItem.Text" xml:space="preserve">
<value>Стандартний колір</value>
</data>
<data name="cMCustomLed.Size" type="System.Drawing.Size, System.Drawing">
<value>279, 56</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>Zrušit</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Uložit</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;zadejte nový název&gt;</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>Ακύρωση</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Αποθήκευση</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;Πληκτρολογήστε το νέο όνομα εδώ&gt;</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>Peruuta</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Tallenna</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;Uusi nimi tähän&gt;</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>Mégsem</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Mentés</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;új név&gt;</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>Batal</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Simpan</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;masukkan nama baru disini)</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>キャンセル</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>保存</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;ここにプロファイル名を入力&gt;</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>취소</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>저장</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;새로운 이름을 써넣으십시오&gt;</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>Prekliči</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Shrani</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;tukaj napiši novo ime&gt;</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnCancel.Text" xml:space="preserve">
<value>Скасувати</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Зберегти</value>
</data>
<data name="tBProfile.Text" xml:space="preserve">
<value>&lt;вкажіть нове ім'я&gt;</value>
</data>
</root>

View File

@ -40,7 +40,24 @@
this.tPHotkeys = new System.Windows.Forms.TabPage(); this.tPHotkeys = new System.Windows.Forms.TabPage();
this.lbHotkeys = new System.Windows.Forms.Label(); this.lbHotkeys = new System.Windows.Forms.Label();
this.tPCredits = new System.Windows.Forms.TabPage(); this.tPCredits = new System.Windows.Forms.TabPage();
this.linkKiliansch = new System.Windows.Forms.LinkLabel();
this.linkChamilsaan = new System.Windows.Forms.LinkLabel();
this.linkBoganhobo = new System.Windows.Forms.LinkLabel();
this.tLPTranslators = new System.Windows.Forms.TableLayoutPanel(); this.tLPTranslators = new System.Windows.Forms.TableLayoutPanel();
this.lbuk = new System.Windows.Forms.Label();
this.lbUkrainianT = new System.Windows.Forms.Label();
this.lbid = new System.Windows.Forms.Label();
this.lbIndonesianT = new System.Windows.Forms.Label();
this.lbhu = new System.Windows.Forms.Label();
this.lbHungarianT = new System.Windows.Forms.Label();
this.lbel = new System.Windows.Forms.Label();
this.lbGreekT = new System.Windows.Forms.Label();
this.lbfi = new System.Windows.Forms.Label();
this.lbFinnishT = new System.Windows.Forms.Label();
this.lbcs = new System.Windows.Forms.Label();
this.lbCzechT = new System.Windows.Forms.Label();
this.lbpt = new System.Windows.Forms.Label();
this.lbPortugueseT = new System.Windows.Forms.Label();
this.lbes = new System.Windows.Forms.Label(); this.lbes = new System.Windows.Forms.Label();
this.lbSpanishT = new System.Windows.Forms.Label(); this.lbSpanishT = new System.Windows.Forms.Label();
this.lbpl = new System.Windows.Forms.Label(); this.lbpl = new System.Windows.Forms.Label();
@ -68,6 +85,7 @@
this.lbTranslators = new System.Windows.Forms.Label(); this.lbTranslators = new System.Windows.Forms.Label();
this.linkSourceCode = new System.Windows.Forms.LinkLabel(); this.linkSourceCode = new System.Windows.Forms.LinkLabel();
this.lbLinkText = new System.Windows.Forms.Label(); this.lbLinkText = new System.Windows.Forms.Label();
this.linkTeokp = new System.Windows.Forms.LinkLabel();
this.tCAbout.SuspendLayout(); this.tCAbout.SuspendLayout();
this.tPHotkeys.SuspendLayout(); this.tPHotkeys.SuspendLayout();
this.tPCredits.SuspendLayout(); this.tPCredits.SuspendLayout();
@ -143,6 +161,10 @@
// //
// tPCredits // tPCredits
// //
this.tPCredits.Controls.Add(this.linkTeokp);
this.tPCredits.Controls.Add(this.linkKiliansch);
this.tPCredits.Controls.Add(this.linkChamilsaan);
this.tPCredits.Controls.Add(this.linkBoganhobo);
this.tPCredits.Controls.Add(this.tLPTranslators); this.tPCredits.Controls.Add(this.tLPTranslators);
this.tPCredits.Controls.Add(this.lbTranslators); this.tPCredits.Controls.Add(this.lbTranslators);
this.tPCredits.Controls.Add(this.linkElectro); this.tPCredits.Controls.Add(this.linkElectro);
@ -155,9 +177,44 @@
this.tPCredits.Name = "tPCredits"; this.tPCredits.Name = "tPCredits";
this.tPCredits.UseVisualStyleBackColor = true; this.tPCredits.UseVisualStyleBackColor = true;
// //
// linkKiliansch
//
resources.ApplyResources(this.linkKiliansch, "linkKiliansch");
this.linkKiliansch.Name = "linkKiliansch";
this.linkKiliansch.TabStop = true;
this.linkKiliansch.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkKiliansch_LinkClicked);
//
// linkChamilsaan
//
resources.ApplyResources(this.linkChamilsaan, "linkChamilsaan");
this.linkChamilsaan.Name = "linkChamilsaan";
this.linkChamilsaan.TabStop = true;
this.linkChamilsaan.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkChamilsaan_LinkClicked);
//
// linkBoganhobo
//
resources.ApplyResources(this.linkBoganhobo, "linkBoganhobo");
this.linkBoganhobo.Name = "linkBoganhobo";
this.linkBoganhobo.TabStop = true;
this.linkBoganhobo.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkBoganhobo_LinkClicked);
//
// tLPTranslators // tLPTranslators
// //
resources.ApplyResources(this.tLPTranslators, "tLPTranslators"); resources.ApplyResources(this.tLPTranslators, "tLPTranslators");
this.tLPTranslators.Controls.Add(this.lbuk, 0, 18);
this.tLPTranslators.Controls.Add(this.lbUkrainianT, 0, 18);
this.tLPTranslators.Controls.Add(this.lbid, 0, 17);
this.tLPTranslators.Controls.Add(this.lbIndonesianT, 0, 17);
this.tLPTranslators.Controls.Add(this.lbhu, 0, 16);
this.tLPTranslators.Controls.Add(this.lbHungarianT, 0, 16);
this.tLPTranslators.Controls.Add(this.lbel, 0, 15);
this.tLPTranslators.Controls.Add(this.lbGreekT, 0, 15);
this.tLPTranslators.Controls.Add(this.lbfi, 0, 14);
this.tLPTranslators.Controls.Add(this.lbFinnishT, 0, 14);
this.tLPTranslators.Controls.Add(this.lbcs, 0, 13);
this.tLPTranslators.Controls.Add(this.lbCzechT, 0, 13);
this.tLPTranslators.Controls.Add(this.lbpt, 0, 12);
this.tLPTranslators.Controls.Add(this.lbPortugueseT, 0, 12);
this.tLPTranslators.Controls.Add(this.lbes, 0, 11); this.tLPTranslators.Controls.Add(this.lbes, 0, 11);
this.tLPTranslators.Controls.Add(this.lbSpanishT, 0, 11); this.tLPTranslators.Controls.Add(this.lbSpanishT, 0, 11);
this.tLPTranslators.Controls.Add(this.lbpl, 0, 10); this.tLPTranslators.Controls.Add(this.lbpl, 0, 10);
@ -184,6 +241,76 @@
this.tLPTranslators.Controls.Add(this.lbFrenchT, 1, 9); this.tLPTranslators.Controls.Add(this.lbFrenchT, 1, 9);
this.tLPTranslators.Name = "tLPTranslators"; this.tLPTranslators.Name = "tLPTranslators";
// //
// lbuk
//
resources.ApplyResources(this.lbuk, "lbuk");
this.lbuk.Name = "lbuk";
//
// lbUkrainianT
//
resources.ApplyResources(this.lbUkrainianT, "lbUkrainianT");
this.lbUkrainianT.Name = "lbUkrainianT";
//
// lbid
//
resources.ApplyResources(this.lbid, "lbid");
this.lbid.Name = "lbid";
//
// lbIndonesianT
//
resources.ApplyResources(this.lbIndonesianT, "lbIndonesianT");
this.lbIndonesianT.Name = "lbIndonesianT";
//
// lbhu
//
resources.ApplyResources(this.lbhu, "lbhu");
this.lbhu.Name = "lbhu";
//
// lbHungarianT
//
resources.ApplyResources(this.lbHungarianT, "lbHungarianT");
this.lbHungarianT.Name = "lbHungarianT";
//
// lbel
//
resources.ApplyResources(this.lbel, "lbel");
this.lbel.Name = "lbel";
//
// lbGreekT
//
resources.ApplyResources(this.lbGreekT, "lbGreekT");
this.lbGreekT.Name = "lbGreekT";
//
// lbfi
//
resources.ApplyResources(this.lbfi, "lbfi");
this.lbfi.Name = "lbfi";
//
// lbFinnishT
//
resources.ApplyResources(this.lbFinnishT, "lbFinnishT");
this.lbFinnishT.Name = "lbFinnishT";
//
// lbcs
//
resources.ApplyResources(this.lbcs, "lbcs");
this.lbcs.Name = "lbcs";
//
// lbCzechT
//
resources.ApplyResources(this.lbCzechT, "lbCzechT");
this.lbCzechT.Name = "lbCzechT";
//
// lbpt
//
resources.ApplyResources(this.lbpt, "lbpt");
this.lbpt.Name = "lbpt";
//
// lbPortugueseT
//
resources.ApplyResources(this.lbPortugueseT, "lbPortugueseT");
this.lbPortugueseT.Name = "lbPortugueseT";
//
// lbes // lbes
// //
resources.ApplyResources(this.lbes, "lbes"); resources.ApplyResources(this.lbes, "lbes");
@ -321,6 +448,13 @@
resources.ApplyResources(this.lbLinkText, "lbLinkText"); resources.ApplyResources(this.lbLinkText, "lbLinkText");
this.lbLinkText.Name = "lbLinkText"; this.lbLinkText.Name = "lbLinkText";
// //
// linkTeokp
//
resources.ApplyResources(this.linkTeokp, "linkTeokp");
this.linkTeokp.Name = "linkTeokp";
this.linkTeokp.TabStop = true;
this.linkTeokp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkTeokp_LinkClicked);
//
// Hotkeys // Hotkeys
// //
resources.ApplyResources(this, "$this"); resources.ApplyResources(this, "$this");
@ -384,5 +518,23 @@
private System.Windows.Forms.Label lbPolishT; private System.Windows.Forms.Label lbPolishT;
private System.Windows.Forms.Label lbfrFR; private System.Windows.Forms.Label lbfrFR;
private System.Windows.Forms.Label lbFrenchT; private System.Windows.Forms.Label lbFrenchT;
private System.Windows.Forms.LinkLabel linkBoganhobo;
private System.Windows.Forms.LinkLabel linkKiliansch;
private System.Windows.Forms.LinkLabel linkChamilsaan;
private System.Windows.Forms.Label lbuk;
private System.Windows.Forms.Label lbUkrainianT;
private System.Windows.Forms.Label lbid;
private System.Windows.Forms.Label lbIndonesianT;
private System.Windows.Forms.Label lbhu;
private System.Windows.Forms.Label lbHungarianT;
private System.Windows.Forms.Label lbel;
private System.Windows.Forms.Label lbGreekT;
private System.Windows.Forms.Label lbfi;
private System.Windows.Forms.Label lbFinnishT;
private System.Windows.Forms.Label lbcs;
private System.Windows.Forms.Label lbCzechT;
private System.Windows.Forms.Label lbpt;
private System.Windows.Forms.Label lbPortugueseT;
private System.Windows.Forms.LinkLabel linkTeokp;
} }
} }

View File

@ -47,44 +47,67 @@ namespace DS4Windows
case "linkInhexSTER": lbLinkText.Text = "https://code.google.com/p/ds4-tool/"; break; case "linkInhexSTER": lbLinkText.Text = "https://code.google.com/p/ds4-tool/"; break;
case "linkJhebbel": lbLinkText.Text = "http://dsdcs.com/index.php/portfolio/software-development/4-ds4windows"; break; case "linkJhebbel": lbLinkText.Text = "http://dsdcs.com/index.php/portfolio/software-development/4-ds4windows"; break;
case "linkSourceCode": lbLinkText.Text = "https://github.com/Jays2Kings/DS4Windows"; break; case "linkSourceCode": lbLinkText.Text = "https://github.com/Jays2Kings/DS4Windows"; break;
case "linkBoganhobo": lbLinkText.Text = "https://github.com/boganhobo"; break;
case "linkChamilsaan": lbLinkText.Text = "https://github.com/Chamilsaan"; break;
case "linkKiliansch": lbLinkText.Text = "https://github.com/kiliansch"; break;
case "linkTeokp": lbLinkText.Text = "https://github.com/teokp"; break;
default: lbLinkText.Text = string.Empty; break; default: lbLinkText.Text = string.Empty; break;
} }
} }
private void linkJays2Kings_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) private void linkJays2Kings_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{ {
System.Diagnostics.Process.Start("http://ds4windows.com"); Process.Start("http://ds4windows.com");
} }
private void linkElectro_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) private void linkElectro_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{ {
System.Diagnostics.Process.Start("https://code.google.com/r/brianfundakowskifeldman-ds4windows/"); Process.Start("https://code.google.com/r/brianfundakowskifeldman-ds4windows/");
} }
private void linkInhexSTER_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) private void linkInhexSTER_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{ {
System.Diagnostics.Process.Start("https://code.google.com/p/ds4-tool/"); Process.Start("https://code.google.com/p/ds4-tool/");
} }
private void linkJhebbel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) private void linkJhebbel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{ {
System.Diagnostics.Process.Start("http://dsdcs.com/index.php/portfolio/software-development/4-ds4windows"); Process.Start("http://dsdcs.com/index.php/portfolio/software-development/4-ds4windows");
} }
private void lLChangelog_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) private void lLChangelog_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{ {
System.Diagnostics.Process.Start("https://docs.google.com/document/d/1l4xcgVQkGUskc5CQ0p069yW22Cd5WAH_yE3Fz2hXo0E/edit?usp=sharing"); Process.Start("https://docs.google.com/document/d/1l4xcgVQkGUskc5CQ0p069yW22Cd5WAH_yE3Fz2hXo0E/edit?usp=sharing");
} }
private void linkDonate_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) private void linkDonate_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{ {
System.Diagnostics.Process.Start("https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=2FTZ9BZEHSQ8Q&lc=US&item_name=DS4Windows&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted"); Process.Start("https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=2FTZ9BZEHSQ8Q&lc=US&item_name=DS4Windows&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted");
} }
private void linkSourceCode_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) private void linkSourceCode_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{ {
System.Diagnostics.Process.Start("https://github.com/Jays2Kings/DS4Windows"); Process.Start("https://github.com/Jays2Kings/DS4Windows");
} }
private void linkBoganhobo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/boganhobo");
}
private void linkChamilsaan_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/Chamilsaan");
}
private void linkKiliansch_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/kiliansch");
}
private void linkTeokp_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/teokp");
}
} }
} }

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbAbout.Text" xml:space="preserve">
<value>DS4Windows - Jays2Kings Build (verze</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Překladatelé</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Podpořte nás prostřednictvím PayPalu</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>Seznam změn</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Poděkování</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Klávesové zkratky</value>
</data>
</root>

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbAbout.Text" xml:space="preserve">
<value>DS4Windows - Jays2Kings Build (Version</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Μεταφραστές</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Δωρεά μέσω Paypal</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>Αλλαγές</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Συντελεστές</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Hotkeys</value>
</data>
</root>

View File

@ -0,0 +1,173 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbAbout.Text" xml:space="preserve">
<value>DS4Windows - Jays2Kings Build (Version</value>
</data>
<data name="lbHotkeys.Text" xml:space="preserve">
<value>Piilota DS4 Ohjain: Piilottaa DS4:n Dinputin muilta ohjelmilta, käytä jos näppäinpainallukset rekisteröityvät tuplana tai R2 toimii Pause-nappina.
Klikkaa kosketuslevyn vasenta puolta: Kosketus vasemmalta
Klikkaa kosketuslevyn oikeaa puolta: Kosketus oikealta
Klikkaa kosketuslevyn keskiosaa (2 sormea): Multitouch
Klikkaa kosketuslevyn yläosaa: Kosketus ylhäältä
PS + Options-napit tai pidä PS-nappia pohjassa 10 sekuntia: Katkaise yhteys ohjaimeen (vain Bluetooth)
Kosketa kosketuslevyä ja paina PS-nappia: Poistaa kosketuslevyn käytöstä (painallukset jatkavat toimimista)
Kosketuslevyn oikeaa alalaita*: Hiiren oikea nappi (Toimii parhaiten jos oikean puolen kosketusta käytetään hiiren nappina)
Hipaise kosketuslevyä kahdella sormella*: Vieritä ylös/alas
Tuplakosketus (tap-and-hold)*: Hiiren vasen nappi pohjassa
Hipaise kosketuslevyä kahdella sormella vasemmalle tai oikealle*: Vaihda asetettua profiilia
Shift-moodi: Pidä asettamaasi vaihtonäppäintä pohjassa käytääksesi vaihtoehtoisia kontrolleja
Hiiren ja näppäimistön asetukset:
Vipukytkin-asetus (Toggle): Näppäin pysyy painettuna kunnes sitä painetaan uudelleen
Macro: Aseta useampi painallus (näppäinsarja) yhdelle napin painallukselle.
Scan code: Näppäimet luetaan eri lailla. Voidaan tarvita joissain peleissä.
*asetettavissa asetuksista</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Kääntäjät</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Lahjoita Paypalilla</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>Muutosloki</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Tekijät</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Pikanäppäimet</value>
</data>
</root>

View File

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Fordítók</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Paypal Támogatás</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>Changelog</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Credits</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Gyorsbillentyűk</value>
</data>
</root>

View File

@ -0,0 +1,156 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbAbout.Text" xml:space="preserve">
<value>DS4Windows - Jays2Kings Build (Version</value>
</data>
<data name="lbHotkeys.Text" xml:space="preserve">
<value>Sembunyikan Controller DS4: Sembunyikan input DS4 (Dinput) dari program lain, centang jika input mengganda dalam game atau R2 men-pause games
Klik sisi kiri touchpad: Sentuh Kiri
Klik sisi kanan touchpad: Sentuh Kanan
Klik touchpad dengan 2 jadi: Sentuhan Multi
Klik sisi atas touchpad: Sentuh Atas
PS + Options atau tahan PS selama 10 detik: Matikan Controller (Bluetooth)
Sentuh Touchpad + PS: Matikan touchpad (Klik masih berfungsi)
Klik pad sisi kanan bawah: Klik kanan (Digunakan ketikan bagian kanan digunakan untuk tombol mouse)
Dua jari naik/turun di touchpad*: Scroll naik/turun
Tekan lalu tahan touchpad*: Mouse kiri (tarik)
2 jari gesek touchpad: Mengganti antara profil ke profil
Shift Modifier: Tahan tombol untuk menggunakan pengaturan yang lain
Ketika mengatur keyboard dan mouse:
Pengalihan: Tombol akan tetap dalam keadaan ""tertahan"" sampai ditekan kembali
Makro: Atur beberapa tombol dalam satu input
Pindai Kode: Tombol diinterpretasikan secara berbeda. Mungkin diperlukan untuk beberapa game *jika diaktifkan</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Penerjemah</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Sumbang Via Paypal</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>Changelog</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Credits</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Hotkeys</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbAbout.Text" xml:space="preserve">
<value>DS4Windows - Jays2Kings Build (Version</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>번역자</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Paypal로 기부하기</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>로그 변경</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>제작자</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>핫 키</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbAbout.Text" xml:space="preserve">
<value>DS4Windows - Jays2Kings Build (Verzija</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Prevajalci</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Daruj preko Paypal-a</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>Changelog</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Credits</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Hotkeys</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,157 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbAbout.Text" xml:space="preserve">
<value>DS4Windows авторства Jays2Kings (Версія</value>
</data>
<data name="lbHotkeys.Text" xml:space="preserve">
<value>Приховати контролер DS4: Приховує ввід (Dinput) контролера DS4 від інших програм, вмикніть якщо відчуваєте подвійне натискання клавіш чи R2 зупиняє гру.
Клік лівою стороною тачпаду: Дотик зліва
Клік правою стороною тачпату: Дотик зправа
Клік тачпадом двома пальцями: Мультитач
Клік верхньою частиною тачпаду: Дотик зверху
PS + Options або утримання PS 10 секунд: Відключення контролеру (тільки через Bluetooth)
Дотик до точпада + PS: Вимикання тачпад-рухів (кліки будуть працювати)
Клік зліва внизу тачпаду: Правий клік (найкраще використовувати коли права сторона використовується як кнопка миші)
Вертикальний скрол двома пальцями: Прокрутка вверх чи вниз
Тап і утримання тачпаду: Перетаскування лівою кнопкою
Горизонтальний скрол двома пальцями: Перемикання профілів
Shift Modifer: Утримуйте для зміни значень кнопок
Призначення функцій клавіатури і миші:
Перемикач: Клавіша залишається "натисненою" після відпускання, повторне натискання "відпускає" клавішу
Макрос: Призначає декілька клавіш на одну кнопку
Сканкод: Клавиші інтерпритуються по різному. Можуть бути необхідні для певних ігр
*Якщо увімкнено</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Перекладачі</value>
</data>
<data name="linkDonate.Text" xml:space="preserve">
<value>Пожертви через PayPal</value>
</data>
<data name="lLChangelog.Text" xml:space="preserve">
<value>Список змін</value>
</data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Титри</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Гарячі клавіші</value>
</data>
</root>

View File

@ -229,16 +229,16 @@
// //
// pBHighlight // pBHighlight
// //
this.pBHighlight.BackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.pBHighlight, "pBHighlight"); resources.ApplyResources(this.pBHighlight, "pBHighlight");
this.pBHighlight.BackColor = System.Drawing.Color.Transparent;
this.pBHighlight.Image = global::DS4Windows.Properties.Resources._360_highlight; this.pBHighlight.Image = global::DS4Windows.Properties.Resources._360_highlight;
this.pBHighlight.Name = "pBHighlight"; this.pBHighlight.Name = "pBHighlight";
this.pBHighlight.TabStop = false; this.pBHighlight.TabStop = false;
// //
// pBMouse // pBMouse
// //
this.pBMouse.Image = global::DS4Windows.Properties.Resources.mouse;
resources.ApplyResources(this.pBMouse, "pBMouse"); resources.ApplyResources(this.pBMouse, "pBMouse");
this.pBMouse.Image = global::DS4Windows.Properties.Resources.mouse;
this.pBMouse.Name = "pBMouse"; this.pBMouse.Name = "pBMouse";
this.pBMouse.TabStop = false; this.pBMouse.TabStop = false;
// //
@ -1078,8 +1078,8 @@
// //
// bnColor // bnColor
// //
this.bnColor.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.bnColor, "bnColor"); resources.ApplyResources(this.bnColor, "bnColor");
this.bnColor.BackColor = System.Drawing.Color.White;
this.bnColor.Name = "bnColor"; this.bnColor.Name = "bnColor";
this.bnColor.UseVisualStyleBackColor = false; this.bnColor.UseVisualStyleBackColor = false;
this.bnColor.Click += new System.EventHandler(this.bnColor_Click); this.bnColor.Click += new System.EventHandler(this.bnColor_Click);
@ -1117,8 +1117,8 @@
// //
// lBTip // lBTip
// //
this.lBTip.ForeColor = System.Drawing.SystemColors.GrayText;
resources.ApplyResources(this.lBTip, "lBTip"); resources.ApplyResources(this.lBTip, "lBTip");
this.lBTip.ForeColor = System.Drawing.SystemColors.GrayText;
this.lBTip.Name = "lBTip"; this.lBTip.Name = "lBTip";
// //
// btnD // btnD
@ -1131,11 +1131,11 @@
// //
// btnAButton // btnAButton
// //
resources.ApplyResources(this.btnAButton, "btnAButton");
this.btnAButton.BackColor = System.Drawing.Color.Transparent; this.btnAButton.BackColor = System.Drawing.Color.Transparent;
this.btnAButton.FlatAppearance.BorderSize = 0; this.btnAButton.FlatAppearance.BorderSize = 0;
this.btnAButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnAButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnAButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnAButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnAButton, "btnAButton");
this.btnAButton.Name = "btnAButton"; this.btnAButton.Name = "btnAButton";
this.btnAButton.TabStop = false; this.btnAButton.TabStop = false;
this.btnAButton.Tag = "X360A Button"; this.btnAButton.Tag = "X360A Button";
@ -1153,11 +1153,11 @@
// //
// btnGuide // btnGuide
// //
resources.ApplyResources(this.btnGuide, "btnGuide");
this.btnGuide.BackColor = System.Drawing.Color.Transparent; this.btnGuide.BackColor = System.Drawing.Color.Transparent;
this.btnGuide.FlatAppearance.BorderSize = 0; this.btnGuide.FlatAppearance.BorderSize = 0;
this.btnGuide.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnGuide.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnGuide.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnGuide.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnGuide, "btnGuide");
this.btnGuide.Name = "btnGuide"; this.btnGuide.Name = "btnGuide";
this.btnGuide.TabStop = false; this.btnGuide.TabStop = false;
this.btnGuide.Tag = "X360Guide"; this.btnGuide.Tag = "X360Guide";
@ -1175,11 +1175,11 @@
// //
// btnStart // btnStart
// //
resources.ApplyResources(this.btnStart, "btnStart");
this.btnStart.BackColor = System.Drawing.Color.Transparent; this.btnStart.BackColor = System.Drawing.Color.Transparent;
this.btnStart.FlatAppearance.BorderSize = 0; this.btnStart.FlatAppearance.BorderSize = 0;
this.btnStart.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnStart.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnStart.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnStart.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnStart, "btnStart");
this.btnStart.Name = "btnStart"; this.btnStart.Name = "btnStart";
this.btnStart.TabStop = false; this.btnStart.TabStop = false;
this.btnStart.Tag = "X360Start"; this.btnStart.Tag = "X360Start";
@ -1197,11 +1197,11 @@
// //
// btnBack // btnBack
// //
resources.ApplyResources(this.btnBack, "btnBack");
this.btnBack.BackColor = System.Drawing.Color.Transparent; this.btnBack.BackColor = System.Drawing.Color.Transparent;
this.btnBack.FlatAppearance.BorderSize = 0; this.btnBack.FlatAppearance.BorderSize = 0;
this.btnBack.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnBack.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnBack.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnBack.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnBack, "btnBack");
this.btnBack.Name = "btnBack"; this.btnBack.Name = "btnBack";
this.btnBack.TabStop = false; this.btnBack.TabStop = false;
this.btnBack.Tag = "X360Back"; this.btnBack.Tag = "X360Back";
@ -1219,11 +1219,11 @@
// //
// btnBButton // btnBButton
// //
resources.ApplyResources(this.btnBButton, "btnBButton");
this.btnBButton.BackColor = System.Drawing.Color.Transparent; this.btnBButton.BackColor = System.Drawing.Color.Transparent;
this.btnBButton.FlatAppearance.BorderSize = 0; this.btnBButton.FlatAppearance.BorderSize = 0;
this.btnBButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnBButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnBButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnBButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnBButton, "btnBButton");
this.btnBButton.Name = "btnBButton"; this.btnBButton.Name = "btnBButton";
this.btnBButton.TabStop = false; this.btnBButton.TabStop = false;
this.btnBButton.Tag = "X360B Button"; this.btnBButton.Tag = "X360B Button";
@ -1241,11 +1241,11 @@
// //
// btnXButton // btnXButton
// //
resources.ApplyResources(this.btnXButton, "btnXButton");
this.btnXButton.BackColor = System.Drawing.Color.Transparent; this.btnXButton.BackColor = System.Drawing.Color.Transparent;
this.btnXButton.FlatAppearance.BorderSize = 0; this.btnXButton.FlatAppearance.BorderSize = 0;
this.btnXButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnXButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnXButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnXButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnXButton, "btnXButton");
this.btnXButton.Name = "btnXButton"; this.btnXButton.Name = "btnXButton";
this.btnXButton.TabStop = false; this.btnXButton.TabStop = false;
this.btnXButton.Tag = "X360X Button"; this.btnXButton.Tag = "X360X Button";
@ -1263,11 +1263,11 @@
// //
// btnYButton // btnYButton
// //
resources.ApplyResources(this.btnYButton, "btnYButton");
this.btnYButton.BackColor = System.Drawing.Color.Transparent; this.btnYButton.BackColor = System.Drawing.Color.Transparent;
this.btnYButton.FlatAppearance.BorderSize = 0; this.btnYButton.FlatAppearance.BorderSize = 0;
this.btnYButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnYButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnYButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnYButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnYButton, "btnYButton");
this.btnYButton.Name = "btnYButton"; this.btnYButton.Name = "btnYButton";
this.btnYButton.TabStop = false; this.btnYButton.TabStop = false;
this.btnYButton.Tag = "X360Y Button"; this.btnYButton.Tag = "X360Y Button";
@ -1285,11 +1285,11 @@
// //
// btnLB // btnLB
// //
resources.ApplyResources(this.btnLB, "btnLB");
this.btnLB.BackColor = System.Drawing.Color.Transparent; this.btnLB.BackColor = System.Drawing.Color.Transparent;
this.btnLB.FlatAppearance.BorderSize = 0; this.btnLB.FlatAppearance.BorderSize = 0;
this.btnLB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnLB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnLB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnLB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnLB, "btnLB");
this.btnLB.Name = "btnLB"; this.btnLB.Name = "btnLB";
this.btnLB.TabStop = false; this.btnLB.TabStop = false;
this.btnLB.Tag = "X360Left Bumper"; this.btnLB.Tag = "X360Left Bumper";
@ -1307,11 +1307,11 @@
// //
// btnDpadRight // btnDpadRight
// //
resources.ApplyResources(this.btnDpadRight, "btnDpadRight");
this.btnDpadRight.BackColor = System.Drawing.Color.Transparent; this.btnDpadRight.BackColor = System.Drawing.Color.Transparent;
this.btnDpadRight.FlatAppearance.BorderSize = 0; this.btnDpadRight.FlatAppearance.BorderSize = 0;
this.btnDpadRight.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnDpadRight.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnDpadRight.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnDpadRight.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnDpadRight, "btnDpadRight");
this.btnDpadRight.Name = "btnDpadRight"; this.btnDpadRight.Name = "btnDpadRight";
this.btnDpadRight.TabStop = false; this.btnDpadRight.TabStop = false;
this.btnDpadRight.Tag = "X360Right Button"; this.btnDpadRight.Tag = "X360Right Button";
@ -1329,11 +1329,11 @@
// //
// btnDpadUp // btnDpadUp
// //
resources.ApplyResources(this.btnDpadUp, "btnDpadUp");
this.btnDpadUp.BackColor = System.Drawing.Color.Transparent; this.btnDpadUp.BackColor = System.Drawing.Color.Transparent;
this.btnDpadUp.FlatAppearance.BorderSize = 0; this.btnDpadUp.FlatAppearance.BorderSize = 0;
this.btnDpadUp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnDpadUp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnDpadUp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnDpadUp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnDpadUp, "btnDpadUp");
this.btnDpadUp.Name = "btnDpadUp"; this.btnDpadUp.Name = "btnDpadUp";
this.btnDpadUp.TabStop = false; this.btnDpadUp.TabStop = false;
this.btnDpadUp.Tag = "X360Up Button"; this.btnDpadUp.Tag = "X360Up Button";
@ -1351,11 +1351,11 @@
// //
// btnDpadDown // btnDpadDown
// //
resources.ApplyResources(this.btnDpadDown, "btnDpadDown");
this.btnDpadDown.BackColor = System.Drawing.Color.Transparent; this.btnDpadDown.BackColor = System.Drawing.Color.Transparent;
this.btnDpadDown.FlatAppearance.BorderSize = 0; this.btnDpadDown.FlatAppearance.BorderSize = 0;
this.btnDpadDown.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnDpadDown.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnDpadDown.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnDpadDown.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnDpadDown, "btnDpadDown");
this.btnDpadDown.Name = "btnDpadDown"; this.btnDpadDown.Name = "btnDpadDown";
this.btnDpadDown.TabStop = false; this.btnDpadDown.TabStop = false;
this.btnDpadDown.Tag = "X360Down Button"; this.btnDpadDown.Tag = "X360Down Button";
@ -1373,11 +1373,11 @@
// //
// btnDpadLeft // btnDpadLeft
// //
resources.ApplyResources(this.btnDpadLeft, "btnDpadLeft");
this.btnDpadLeft.BackColor = System.Drawing.Color.Transparent; this.btnDpadLeft.BackColor = System.Drawing.Color.Transparent;
this.btnDpadLeft.FlatAppearance.BorderSize = 0; this.btnDpadLeft.FlatAppearance.BorderSize = 0;
this.btnDpadLeft.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnDpadLeft.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnDpadLeft.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnDpadLeft.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnDpadLeft, "btnDpadLeft");
this.btnDpadLeft.Name = "btnDpadLeft"; this.btnDpadLeft.Name = "btnDpadLeft";
this.btnDpadLeft.TabStop = false; this.btnDpadLeft.TabStop = false;
this.btnDpadLeft.Tag = "X360Left Button"; this.btnDpadLeft.Tag = "X360Left Button";
@ -1395,11 +1395,11 @@
// //
// btnLT // btnLT
// //
resources.ApplyResources(this.btnLT, "btnLT");
this.btnLT.BackColor = System.Drawing.Color.Transparent; this.btnLT.BackColor = System.Drawing.Color.Transparent;
this.btnLT.FlatAppearance.BorderSize = 0; this.btnLT.FlatAppearance.BorderSize = 0;
this.btnLT.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnLT.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnLT.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnLT.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnLT, "btnLT");
this.btnLT.ForeColor = System.Drawing.Color.Transparent; this.btnLT.ForeColor = System.Drawing.Color.Transparent;
this.btnLT.Name = "btnLT"; this.btnLT.Name = "btnLT";
this.btnLT.TabStop = false; this.btnLT.TabStop = false;
@ -1473,11 +1473,11 @@
// //
// btnRSLeft // btnRSLeft
// //
resources.ApplyResources(this.btnRSLeft, "btnRSLeft");
this.btnRSLeft.BackColor = System.Drawing.Color.Transparent; this.btnRSLeft.BackColor = System.Drawing.Color.Transparent;
this.btnRSLeft.FlatAppearance.BorderSize = 0; this.btnRSLeft.FlatAppearance.BorderSize = 0;
this.btnRSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnRSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnRSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnRSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnRSLeft, "btnRSLeft");
this.btnRSLeft.Name = "btnRSLeft"; this.btnRSLeft.Name = "btnRSLeft";
this.btnRSLeft.TabStop = false; this.btnRSLeft.TabStop = false;
this.btnRSLeft.Tag = "X360Right X-Axis-"; this.btnRSLeft.Tag = "X360Right X-Axis-";
@ -1495,11 +1495,11 @@
// //
// btnRSDown // btnRSDown
// //
resources.ApplyResources(this.btnRSDown, "btnRSDown");
this.btnRSDown.BackColor = System.Drawing.Color.Transparent; this.btnRSDown.BackColor = System.Drawing.Color.Transparent;
this.btnRSDown.FlatAppearance.BorderSize = 0; this.btnRSDown.FlatAppearance.BorderSize = 0;
this.btnRSDown.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnRSDown.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnRSDown.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnRSDown.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnRSDown, "btnRSDown");
this.btnRSDown.Name = "btnRSDown"; this.btnRSDown.Name = "btnRSDown";
this.btnRSDown.TabStop = false; this.btnRSDown.TabStop = false;
this.btnRSDown.Tag = "X360Right Y-Axis+"; this.btnRSDown.Tag = "X360Right Y-Axis+";
@ -1517,11 +1517,11 @@
// //
// btnRSRight // btnRSRight
// //
resources.ApplyResources(this.btnRSRight, "btnRSRight");
this.btnRSRight.BackColor = System.Drawing.Color.Transparent; this.btnRSRight.BackColor = System.Drawing.Color.Transparent;
this.btnRSRight.FlatAppearance.BorderSize = 0; this.btnRSRight.FlatAppearance.BorderSize = 0;
this.btnRSRight.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnRSRight.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnRSRight.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnRSRight.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnRSRight, "btnRSRight");
this.btnRSRight.Name = "btnRSRight"; this.btnRSRight.Name = "btnRSRight";
this.btnRSRight.TabStop = false; this.btnRSRight.TabStop = false;
this.btnRSRight.Tag = "X360Right X-Axis+"; this.btnRSRight.Tag = "X360Right X-Axis+";
@ -1539,11 +1539,11 @@
// //
// btnRB // btnRB
// //
resources.ApplyResources(this.btnRB, "btnRB");
this.btnRB.BackColor = System.Drawing.Color.Transparent; this.btnRB.BackColor = System.Drawing.Color.Transparent;
this.btnRB.FlatAppearance.BorderSize = 0; this.btnRB.FlatAppearance.BorderSize = 0;
this.btnRB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnRB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnRB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnRB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnRB, "btnRB");
this.btnRB.Name = "btnRB"; this.btnRB.Name = "btnRB";
this.btnRB.TabStop = false; this.btnRB.TabStop = false;
this.btnRB.Tag = "X360Right Bumper"; this.btnRB.Tag = "X360Right Bumper";
@ -1561,11 +1561,11 @@
// //
// btnLSLeft // btnLSLeft
// //
resources.ApplyResources(this.btnLSLeft, "btnLSLeft");
this.btnLSLeft.BackColor = System.Drawing.Color.Transparent; this.btnLSLeft.BackColor = System.Drawing.Color.Transparent;
this.btnLSLeft.FlatAppearance.BorderSize = 0; this.btnLSLeft.FlatAppearance.BorderSize = 0;
this.btnLSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnLSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnLSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnLSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnLSLeft, "btnLSLeft");
this.btnLSLeft.Name = "btnLSLeft"; this.btnLSLeft.Name = "btnLSLeft";
this.btnLSLeft.TabStop = false; this.btnLSLeft.TabStop = false;
this.btnLSLeft.Tag = "X360Left X-Axis-"; this.btnLSLeft.Tag = "X360Left X-Axis-";
@ -1583,11 +1583,11 @@
// //
// btnRSUp // btnRSUp
// //
resources.ApplyResources(this.btnRSUp, "btnRSUp");
this.btnRSUp.BackColor = System.Drawing.Color.Transparent; this.btnRSUp.BackColor = System.Drawing.Color.Transparent;
this.btnRSUp.FlatAppearance.BorderSize = 0; this.btnRSUp.FlatAppearance.BorderSize = 0;
this.btnRSUp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnRSUp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnRSUp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnRSUp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnRSUp, "btnRSUp");
this.btnRSUp.Name = "btnRSUp"; this.btnRSUp.Name = "btnRSUp";
this.btnRSUp.TabStop = false; this.btnRSUp.TabStop = false;
this.btnRSUp.Tag = "X360Right Y-Axis-"; this.btnRSUp.Tag = "X360Right Y-Axis-";
@ -1605,11 +1605,11 @@
// //
// btnLSDown // btnLSDown
// //
resources.ApplyResources(this.btnLSDown, "btnLSDown");
this.btnLSDown.BackColor = System.Drawing.Color.Transparent; this.btnLSDown.BackColor = System.Drawing.Color.Transparent;
this.btnLSDown.FlatAppearance.BorderSize = 0; this.btnLSDown.FlatAppearance.BorderSize = 0;
this.btnLSDown.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnLSDown.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnLSDown.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnLSDown.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnLSDown, "btnLSDown");
this.btnLSDown.Name = "btnLSDown"; this.btnLSDown.Name = "btnLSDown";
this.btnLSDown.TabStop = false; this.btnLSDown.TabStop = false;
this.btnLSDown.Tag = "X360Left Y-Axis+"; this.btnLSDown.Tag = "X360Left Y-Axis+";
@ -1627,11 +1627,11 @@
// //
// btnRT // btnRT
// //
resources.ApplyResources(this.btnRT, "btnRT");
this.btnRT.BackColor = System.Drawing.Color.Transparent; this.btnRT.BackColor = System.Drawing.Color.Transparent;
this.btnRT.FlatAppearance.BorderSize = 0; this.btnRT.FlatAppearance.BorderSize = 0;
this.btnRT.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnRT.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnRT.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnRT.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnRT, "btnRT");
this.btnRT.Name = "btnRT"; this.btnRT.Name = "btnRT";
this.btnRT.TabStop = false; this.btnRT.TabStop = false;
this.btnRT.Tag = "X360Right Trigger"; this.btnRT.Tag = "X360Right Trigger";
@ -1649,11 +1649,11 @@
// //
// btnLSRight // btnLSRight
// //
resources.ApplyResources(this.btnLSRight, "btnLSRight");
this.btnLSRight.BackColor = System.Drawing.Color.Transparent; this.btnLSRight.BackColor = System.Drawing.Color.Transparent;
this.btnLSRight.FlatAppearance.BorderSize = 0; this.btnLSRight.FlatAppearance.BorderSize = 0;
this.btnLSRight.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnLSRight.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnLSRight.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnLSRight.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnLSRight, "btnLSRight");
this.btnLSRight.Name = "btnLSRight"; this.btnLSRight.Name = "btnLSRight";
this.btnLSRight.TabStop = false; this.btnLSRight.TabStop = false;
this.btnLSRight.Tag = "X360Left X-Axis+"; this.btnLSRight.Tag = "X360Left X-Axis+";
@ -1671,11 +1671,11 @@
// //
// btnRSClick // btnRSClick
// //
resources.ApplyResources(this.btnRSClick, "btnRSClick");
this.btnRSClick.BackColor = System.Drawing.Color.Transparent; this.btnRSClick.BackColor = System.Drawing.Color.Transparent;
this.btnRSClick.FlatAppearance.BorderSize = 0; this.btnRSClick.FlatAppearance.BorderSize = 0;
this.btnRSClick.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnRSClick.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnRSClick.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnRSClick.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnRSClick, "btnRSClick");
this.btnRSClick.Name = "btnRSClick"; this.btnRSClick.Name = "btnRSClick";
this.btnRSClick.TabStop = false; this.btnRSClick.TabStop = false;
this.btnRSClick.Tag = "X360Right Stick"; this.btnRSClick.Tag = "X360Right Stick";
@ -1693,11 +1693,11 @@
// //
// btnLSUp // btnLSUp
// //
resources.ApplyResources(this.btnLSUp, "btnLSUp");
this.btnLSUp.BackColor = System.Drawing.Color.Transparent; this.btnLSUp.BackColor = System.Drawing.Color.Transparent;
this.btnLSUp.FlatAppearance.BorderSize = 0; this.btnLSUp.FlatAppearance.BorderSize = 0;
this.btnLSUp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnLSUp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnLSUp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnLSUp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnLSUp, "btnLSUp");
this.btnLSUp.Name = "btnLSUp"; this.btnLSUp.Name = "btnLSUp";
this.btnLSUp.TabStop = false; this.btnLSUp.TabStop = false;
this.btnLSUp.Tag = "X360Left Y-Axis-"; this.btnLSUp.Tag = "X360Left Y-Axis-";
@ -1707,11 +1707,11 @@
// //
// btnLSClick // btnLSClick
// //
resources.ApplyResources(this.btnLSClick, "btnLSClick");
this.btnLSClick.BackColor = System.Drawing.Color.Transparent; this.btnLSClick.BackColor = System.Drawing.Color.Transparent;
this.btnLSClick.FlatAppearance.BorderSize = 0; this.btnLSClick.FlatAppearance.BorderSize = 0;
this.btnLSClick.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnLSClick.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
this.btnLSClick.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnLSClick.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.btnLSClick, "btnLSClick");
this.btnLSClick.Name = "btnLSClick"; this.btnLSClick.Name = "btnLSClick";
this.btnLSClick.TabStop = false; this.btnLSClick.TabStop = false;
this.btnLSClick.Tag = "X360Left Stick"; this.btnLSClick.Tag = "X360Left Stick";
@ -1751,6 +1751,7 @@
// //
// gBExtras // gBExtras
// //
resources.ApplyResources(this.gBExtras, "gBExtras");
this.gBExtras.Controls.Add(this.nUDMouse); this.gBExtras.Controls.Add(this.nUDMouse);
this.gBExtras.Controls.Add(this.cBMouse); this.gBExtras.Controls.Add(this.cBMouse);
this.gBExtras.Controls.Add(this.cBLightbar); this.gBExtras.Controls.Add(this.cBLightbar);
@ -1773,7 +1774,6 @@
this.gBExtras.Controls.Add(this.tBGreenBar); this.gBExtras.Controls.Add(this.tBGreenBar);
this.gBExtras.Controls.Add(this.tBRedBar); this.gBExtras.Controls.Add(this.tBRedBar);
this.gBExtras.Controls.Add(this.lBTip); this.gBExtras.Controls.Add(this.lBTip);
resources.ApplyResources(this.gBExtras, "gBExtras");
this.gBExtras.Name = "gBExtras"; this.gBExtras.Name = "gBExtras";
this.gBExtras.TabStop = false; this.gBExtras.TabStop = false;
// //
@ -1824,6 +1824,7 @@
// //
// cBShiftButton // cBShiftButton
// //
resources.ApplyResources(this.cBShiftButton, "cBShiftButton");
this.cBShiftButton.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBShiftButton.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cBShiftButton.FormattingEnabled = true; this.cBShiftButton.FormattingEnabled = true;
this.cBShiftButton.Items.AddRange(new object[] { this.cBShiftButton.Items.AddRange(new object[] {
@ -1854,13 +1855,12 @@
resources.GetString("cBShiftButton.Items24"), resources.GetString("cBShiftButton.Items24"),
resources.GetString("cBShiftButton.Items25"), resources.GetString("cBShiftButton.Items25"),
resources.GetString("cBShiftButton.Items26")}); resources.GetString("cBShiftButton.Items26")});
resources.ApplyResources(this.cBShiftButton, "cBShiftButton");
this.cBShiftButton.Name = "cBShiftButton"; this.cBShiftButton.Name = "cBShiftButton";
// //
// pnl360Controls // pnl360Controls
// //
this.pnl360Controls.BackgroundImage = global::DS4Windows.Properties.Resources._360_map;
resources.ApplyResources(this.pnl360Controls, "pnl360Controls"); resources.ApplyResources(this.pnl360Controls, "pnl360Controls");
this.pnl360Controls.BackgroundImage = global::DS4Windows.Properties.Resources._360_map;
this.pnl360Controls.Controls.Add(this.lb360Tip); this.pnl360Controls.Controls.Add(this.lb360Tip);
this.pnl360Controls.Controls.Add(this.pBHighlight); this.pnl360Controls.Controls.Add(this.pBHighlight);
this.pnl360Controls.Controls.Add(this.btnGuide); this.pnl360Controls.Controls.Add(this.btnGuide);

View File

@ -0,0 +1,214 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbFlashRate.Text" xml:space="preserve">
<value>Rychlost blikání</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>47, 17</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>Těžké</value>
</data>
<data name="lbLight.Size" type="System.Drawing.Size, System.Drawing">
<value>47, 17</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>Lehké</value>
</data>
<data name="cBScanCode.Size" type="System.Drawing.Size, System.Drawing">
<value>96, 21</value>
</data>
<data name="cBScanCode.Text" xml:space="preserve">
<value>Načíst kód</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>Vybrat můžete také klávesu, stačí ji stisknout</value>
</data>
<data name="btnGuide.Text" xml:space="preserve">
<value>Průvodce</value>
</data>
<data name="X360Label.Size" type="System.Drawing.Size, System.Drawing">
<value>98, 17</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>X360 ovládání</value>
</data>
<data name="KBMlabel.Size" type="System.Drawing.Size, System.Drawing">
<value>117, 17</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>Klávesnice a myš</value>
</data>
<data name="lBMacroOn.Size" type="System.Drawing.Size, System.Drawing">
<value>543, 17</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>Aktivujte makro, vyberte klávesu pro deaktivování nebo zavřete toto okno pro uložení</value>
</data>
<data name="bnMacro.Text" xml:space="preserve">
<value>Zaznamenat makro</value>
</data>
<data name="cBToggle.Location" type="System.Drawing.Point, System.Drawing">
<value>735, 10</value>
</data>
<data name="cBToggle.Size" type="System.Drawing.Size, System.Drawing">
<value>88, 21</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>Přepnout</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>Výchozí</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>Uvolnit</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>Extra</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>Změnit citlivost myši</value>
</data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>113, 21</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>Změnit barvu</value>
</data>
<data name="rBRegular.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 261</value>
</data>
<data name="rBRegular.Size" type="System.Drawing.Size, System.Drawing">
<value>95, 21</value>
</data>
<data name="rBRegular.Text" xml:space="preserve">
<value>Pravidelný</value>
</data>
<data name="rBShiftModifer.Size" type="System.Drawing.Size, System.Drawing">
<value>133, 21</value>
</data>
<data name="rBShiftModifer.Text" xml:space="preserve">
<value>Modifikáto Shiftu</value>
</data>
<data name="cBShiftButton.Items" xml:space="preserve">
<value>Vyberte Shift Trigger</value>
</data>
</root>

View File

@ -0,0 +1,215 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbFlashRate.Text" xml:space="preserve">
<value>Βαθμός Λάμψης</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>Δόνηση</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>41, 17</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>Βαρύ</value>
</data>
<data name="lbLight.Size" type="System.Drawing.Size, System.Drawing">
<value>57, 17</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>Ελαφρύ</value>
</data>
<data name="bnTest.Text" xml:space="preserve">
<value>Δοκιμή</value>
</data>
<data name="cBScanCode.Location" type="System.Drawing.Point, System.Drawing">
<value>830, 10</value>
</data>
<data name="cBScanCode.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 21</value>
</data>
<data name="cBScanCode.Text" xml:space="preserve">
<value>Σάρωση κωδικού</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>Μπορείς επίσης να επιλέξεις ενα πλήκτρο πατώντας το</value>
</data>
<data name="btnGuide.Text" xml:space="preserve">
<value>Οδηγός</value>
</data>
<data name="X360Label.Size" type="System.Drawing.Size, System.Drawing">
<value>107, 17</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>Χειρισμός Χ360</value>
</data>
<data name="KBMlabel.Location" type="System.Drawing.Point, System.Drawing">
<value>584, 143</value>
</data>
<data name="KBMlabel.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 34</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>Πληκτρολόγιο
και Ποντίκι</value>
</data>
<data name="lBMacroOn.Size" type="System.Drawing.Size, System.Drawing">
<value>717, 17</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>Μακροεντολή ενεργοποιημένη,Επίλεξε πλήκτρο για απενεργοποίηση,αλλιώς κλείσε το παράθυρο για αποθήκευση</value>
</data>
<data name="bnMacro.Location" type="System.Drawing.Point, System.Drawing">
<value>972, 5</value>
</data>
<data name="bnMacro.Size" type="System.Drawing.Size, System.Drawing">
<value>112, 29</value>
</data>
<data name="bnMacro.Text" xml:space="preserve">
<value>Καταγραφή μακροεντολής</value>
</data>
<data name="cBToggle.Location" type="System.Drawing.Point, System.Drawing">
<value>734, 10</value>
</data>
<data name="cBToggle.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 21</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>Εναλλαγή</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>Προεπιλογή</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>Μη δεσμευμένο</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>Έξτρα</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>Αλλαγή ευαισθησίας ποντικιού</value>
</data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 21</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>Αλλαγή Φωτισμού</value>
</data>
</root>

View File

@ -0,0 +1,202 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbFlashRate.Text" xml:space="preserve">
<value>Vilkumisnopeus</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbRumble.Size" type="System.Drawing.Size, System.Drawing">
<value>49, 17</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>Värinä</value>
</data>
<data name="lbHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>69, 17</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>Voimakas</value>
</data>
<data name="lbLight.Size" type="System.Drawing.Size, System.Drawing">
<value>62, 17</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>Hiljainen</value>
</data>
<data name="bnTest.Text" xml:space="preserve">
<value>Testaa</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>Voit myös valita napin näppäimistöltä painamalla sitä</value>
</data>
<data name="X360Label.Size" type="System.Drawing.Size, System.Drawing">
<value>83, 17</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>X360 ohjain</value>
</data>
<data name="KBMlabel.Size" type="System.Drawing.Size, System.Drawing">
<value>129, 17</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>Näppäimistö ja Hiiri</value>
</data>
<data name="lBMacroOn.Size" type="System.Drawing.Size, System.Drawing">
<value>420, 17</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>Macro päällä. Valitse pysäytysnappi tai sulje ikkuna tallentaaksesi</value>
</data>
<data name="bnMacro.Text" xml:space="preserve">
<value>Nauhoita macro</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>Oletus</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>Ei asetettu</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>Vaihda osoittimen nopeutta</value>
</data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>112, 21</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>Vaihda valoa</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>Muut</value>
</data>
<data name="rBRegular.Size" type="System.Drawing.Size, System.Drawing">
<value>85, 21</value>
</data>
<data name="rBRegular.Text" xml:space="preserve">
<value>Normaali</value>
</data>
<data name="rBShiftModifer.Size" type="System.Drawing.Size, System.Drawing">
<value>97, 21</value>
</data>
<data name="rBShiftModifer.Text" xml:space="preserve">
<value>Shift-nappi</value>
</data>
<data name="cBShiftButton.Items" xml:space="preserve">
<value>Valitse Shift-nappi</value>
</data>
</root>

View File

@ -0,0 +1,232 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbFlashRate.Text" xml:space="preserve">
<value>Villogás időköze</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbRumble.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 17</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>Zörgés</value>
</data>
<data name="lbHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>37, 17</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>Erős</value>
</data>
<data name="lbLight.Size" type="System.Drawing.Size, System.Drawing">
<value>58, 17</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>Gyenge</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>K</value>
</data>
<data name="lbGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>17, 17</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>Z</value>
</data>
<data name="bnTest.Text" xml:space="preserve">
<value>Teszt</value>
</data>
<data name="lbRed.Size" type="System.Drawing.Size, System.Drawing">
<value>17, 17</value>
</data>
<data name="lbRed.Text" xml:space="preserve">
<value>P</value>
</data>
<data name="cBScanCode.Size" type="System.Drawing.Size, System.Drawing">
<value>125, 21</value>
</data>
<data name="cBScanCode.Text" xml:space="preserve">
<value>Kód Scannelés</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>Gombot is választhatsz úgy hogy beírod</value>
</data>
<data name="btnGuide.Text" xml:space="preserve">
<value>Útmutató</value>
</data>
<data name="X360Label.Size" type="System.Drawing.Size, System.Drawing">
<value>95, 17</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>X360 gombok</value>
</data>
<data name="KBMlabel.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 17</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>Egér és billentyűzet</value>
</data>
<data name="lBMacroOn.Size" type="System.Drawing.Size, System.Drawing">
<value>626, 17</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>Macro Bekapcsolva, Válassz egy gombot a kikapcsoláshoz vagy zárdd be az ablakot a mentéshez</value>
</data>
<data name="bnMacro.Text" xml:space="preserve">
<value>Makró felvétele</value>
</data>
<data name="cBToggle.Size" type="System.Drawing.Size, System.Drawing">
<value>69, 21</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>Váltás</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>Alapértelmezett</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>Beállítatlan</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>Extrák</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>Egér érzékenység állítása</value>
</data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 21</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>Világítás váltása</value>
</data>
<data name="rBRegular.Size" type="System.Drawing.Size, System.Drawing">
<value>78, 21</value>
</data>
<data name="rBRegular.Text" xml:space="preserve">
<value>Rendes</value>
</data>
<data name="rBShiftModifer.Size" type="System.Drawing.Size, System.Drawing">
<value>118, 21</value>
</data>
<data name="rBShiftModifer.Text" xml:space="preserve">
<value>Shift módósító</value>
</data>
<data name="cBShiftButton.Items" xml:space="preserve">
<value>Shift kiválasztása</value>
</data>
</root>

View File

@ -0,0 +1,208 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbFlashRate.Text" xml:space="preserve">
<value>Tingkat Kedit</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbRumble.Size" type="System.Drawing.Size, System.Drawing">
<value>44, 17</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>Getar</value>
</data>
<data name="lbHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 17</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>Berat</value>
</data>
<data name="lbLight.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 17</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>Ringan</value>
</data>
<data name="cBScanCode.Size" type="System.Drawing.Size, System.Drawing">
<value>106, 21</value>
</data>
<data name="cBScanCode.Text" xml:space="preserve">
<value>Pindai Kode</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>Kamu juga bisa memilih tombol dengan menekannya</value>
</data>
<data name="btnGuide.Text" xml:space="preserve">
<value>Panduan</value>
</data>
<data name="X360Label.Size" type="System.Drawing.Size, System.Drawing">
<value>119, 17</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>Pengaturan X360</value>
</data>
<data name="KBMlabel.Location" type="System.Drawing.Point, System.Drawing">
<value>578, 150</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>Keyboard dan Mouse</value>
</data>
<data name="lBMacroOn.Size" type="System.Drawing.Size, System.Drawing">
<value>597, 17</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>Makro aktif, tetapkan tombol untuk meng-nonaktifkan, atau tutup jendela ini untuk menyimpan</value>
</data>
<data name="bnMacro.Text" xml:space="preserve">
<value>Rekam Makro</value>
</data>
<data name="cBToggle.Size" type="System.Drawing.Size, System.Drawing">
<value>64, 21</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>Ubah</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>Pengaturan Awal</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>Hilangkan pemasangan</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>Ganti Tingkat Sensivitas Mouse</value>
</data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>137, 21</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>Ganti warna LED</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>Tambahan</value>
</data>
<data name="rBRegular.Size" type="System.Drawing.Size, System.Drawing">
<value>64, 21</value>
</data>
<data name="rBRegular.Text" xml:space="preserve">
<value>Biasa</value>
</data>
<data name="cBShiftButton.Items" xml:space="preserve">
<value>Pilih Shift Trigger</value>
</data>
</root>

View File

@ -0,0 +1,127 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbRumble.Size" type="System.Drawing.Size, System.Drawing">
<value>36, 17</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>振動</value>
</data>
</root>

View File

@ -0,0 +1,189 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bnMacro.Text" xml:space="preserve">
<value>메크로 녹화</value>
</data>
<data name="bnTest.Text" xml:space="preserve">
<value>테스트</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>기본값</value>
</data>
<data name="btnGuide.Text" xml:space="preserve">
<value>가이드</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>언바운드</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>LED색 변경</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>마우스 감도 변경</value>
</data>
<data name="cBScanCode.Text" xml:space="preserve">
<value>코드 스캔</value>
</data>
<data name="cBShiftButton.Items" xml:space="preserve">
<value>이동 트리거 선택</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>변환</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>부가기능</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>키보드와 마우스</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>B</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>G</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>강한 진동</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>약한 진동</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>메크로 켜짐, 멈출 키를 선택하거나 창을 닫아서 저장</value>
</data>
<data name="lbRed.Text" xml:space="preserve">
<value>R</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>진동</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>키를 입력하여 선택 할 수도 있습니다</value>
</data>
<data name="rBRegular.Text" xml:space="preserve">
<value>기본</value>
</data>
<data name="rBShiftModifer.Text" xml:space="preserve">
<value>모드 변경</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>X360 컨트롤</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,223 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbFlashRate.Text" xml:space="preserve">
<value>Hitrost utripanja</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbRumble.Size" type="System.Drawing.Size, System.Drawing">
<value>68, 17</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>Vibriranje</value>
</data>
<data name="lbHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>50, 17</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>Močno</value>
</data>
<data name="lbLight.Size" type="System.Drawing.Size, System.Drawing">
<value>49, 17</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>Nežno</value>
</data>
<data name="bnTest.Text" xml:space="preserve">
<value>Testiraj</value>
</data>
<data name="cBScanCode.Location" type="System.Drawing.Point, System.Drawing">
<value>812, 10</value>
</data>
<data name="cBScanCode.Size" type="System.Drawing.Size, System.Drawing">
<value>116, 21</value>
</data>
<data name="cBScanCode.Text" xml:space="preserve">
<value>Skeniraj kodo</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>Lahko tudi izbereš tipko s tem, da jo pritisneš</value>
</data>
<data name="btnGuide.Text" xml:space="preserve">
<value>Vodnik</value>
</data>
<data name="X360Label.Size" type="System.Drawing.Size, System.Drawing">
<value>83, 17</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>X360 gumbi</value>
</data>
<data name="KBMlabel.Size" type="System.Drawing.Size, System.Drawing">
<value>131, 17</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>Tipkovnica in miška</value>
</data>
<data name="lBMacroOn.Size" type="System.Drawing.Size, System.Drawing">
<value>411, 17</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>Macro je vklopljen; Izberi tipko za izklop; zapri okno za shranitev</value>
</data>
<data name="bnMacro.Text" xml:space="preserve">
<value>Zapiši "a macro"</value>
</data>
<data name="cBToggle.Location" type="System.Drawing.Point, System.Drawing">
<value>731, 10</value>
</data>
<data name="cBToggle.Size" type="System.Drawing.Size, System.Drawing">
<value>81, 21</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>Preklopi</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>Privzeto</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>Brez obvez</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>Dodatki</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>Spremeni občutljivost miške</value>
</data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>112, 21</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>Spremeni luč</value>
</data>
<data name="rBRegular.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 21</value>
</data>
<data name="rBRegular.Text" xml:space="preserve">
<value>Navadno</value>
</data>
<data name="rBShiftModifer.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 21</value>
</data>
<data name="rBShiftModifer.Text" xml:space="preserve">
<value>Shift modifikator</value>
</data>
<data name="cBShiftButton.Items" xml:space="preserve">
<value>Izberi Shift gumb</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,242 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lbFlashRate.Text" xml:space="preserve">
<value>Частота мерехтіння</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbRumble.Size" type="System.Drawing.Size, System.Drawing">
<value>63, 17</value>
</data>
<data name="lbRumble.Text" xml:space="preserve">
<value>Вібрація</value>
</data>
<data name="lbHeavy.Size" type="System.Drawing.Size, System.Drawing">
<value>57, 17</value>
</data>
<data name="lbHeavy.Text" xml:space="preserve">
<value>Важкий</value>
</data>
<data name="lbLight.Size" type="System.Drawing.Size, System.Drawing">
<value>54, 17</value>
</data>
<data name="lbLight.Text" xml:space="preserve">
<value>Легкий</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>С</value>
</data>
<data name="lbGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>17, 17</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>З</value>
</data>
<data name="bnTest.Text" xml:space="preserve">
<value>Тест</value>
</data>
<data name="lbRed.Text" xml:space="preserve">
<value>Ч</value>
</data>
<data name="cBScanCode.Location" type="System.Drawing.Point, System.Drawing">
<value>799, 10</value>
</data>
<data name="cBScanCode.Size" type="System.Drawing.Size, System.Drawing">
<value>126, 21</value>
</data>
<data name="cBScanCode.Text" xml:space="preserve">
<value>Сканувати код</value>
</data>
<data name="lBTip.Text" xml:space="preserve">
<value>Ви можете обрати
клавішу натиснувши її</value>
</data>
<data name="btnGuide.Text" xml:space="preserve">
<value>Гід</value>
</data>
<data name="X360Label.Size" type="System.Drawing.Size, System.Drawing">
<value>118, 17</value>
</data>
<data name="X360Label.Text" xml:space="preserve">
<value>X360 управління</value>
</data>
<data name="KBMlabel.Location" type="System.Drawing.Point, System.Drawing">
<value>581, 150</value>
</data>
<data name="KBMlabel.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 17</value>
</data>
<data name="KBMlabel.Text" xml:space="preserve">
<value>Клавіатура та миша</value>
</data>
<data name="lBMacroOn.Size" type="System.Drawing.Size, System.Drawing">
<value>578, 17</value>
</data>
<data name="lBMacroOn.Text" xml:space="preserve">
<value>Макро увімкнено, виберіть клавішу, щоб відключити, або зачиніть вікно, щоб зберегти</value>
</data>
<data name="bnMacro.Text" xml:space="preserve">
<value>Запис макросу</value>
</data>
<data name="cBToggle.Location" type="System.Drawing.Point, System.Drawing">
<value>692, 10</value>
</data>
<data name="cBToggle.Size" type="System.Drawing.Size, System.Drawing">
<value>104, 21</value>
</data>
<data name="cBToggle.Text" xml:space="preserve">
<value>Перемикач</value>
</data>
<data name="btnDefault.Text" xml:space="preserve">
<value>За замовчуванням</value>
</data>
<data name="btnUNBOUND.Text" xml:space="preserve">
<value>Незв'язано</value>
</data>
<data name="cBMouse.Text" xml:space="preserve">
<value>Змінити чутливість миші</value>
</data>
<data name="cBLightbar.Size" type="System.Drawing.Size, System.Drawing">
<value>126, 21</value>
</data>
<data name="cBLightbar.Text" xml:space="preserve">
<value>Змінити світло</value>
</data>
<data name="gBExtras.Text" xml:space="preserve">
<value>Додаткове</value>
</data>
<data name="rBRegular.Size" type="System.Drawing.Size, System.Drawing">
<value>101, 21</value>
</data>
<data name="rBRegular.Text" xml:space="preserve">
<value>Звичайний</value>
</data>
<data name="rBShiftModifer.Location" type="System.Drawing.Point, System.Drawing">
<value>135, 261</value>
</data>
<data name="rBShiftModifer.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 21</value>
</data>
<data name="rBShiftModifer.Text" xml:space="preserve">
<value>Зміна дії</value>
</data>
<data name="cBShiftButton.Items" xml:space="preserve">
<value>Виберіть перемикач зміни дії</value>
</data>
</root>

View File

@ -641,7 +641,7 @@
<value>احذف الإجراء</value> <value>احذف الإجراء</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>علق على الأزرار لتنفيذ الإجراء، علم الإجراء لإستخدامه عند فتح السجل. الحد الأعلى 50 أمر</value> <value>علق على الأزرار لتنفيذ الإجراء، علم الإجراء لإستخدامه عند فتح السجل.</value>
</data> </data>
<data name="tPDeadzone.Text" xml:space="preserve"> <data name="tPDeadzone.Text" xml:space="preserve">
<value>المنطقة الفائضة</value> <value>المنطقة الفائضة</value>

View File

@ -424,6 +424,9 @@ namespace DS4Windows
case "XboxGameDVR": case "XboxGameDVR":
lvi.SubItems.Add("Xbox Game DVR"); lvi.SubItems.Add("Xbox Game DVR");
break; break;
case "MultiAction":
lvi.SubItems.Add(Properties.Resources.MultiAction);
break;
} }
if (newp) if (newp)
if (action.type == "DisconnectBT") if (action.type == "DisconnectBT")
@ -1883,10 +1886,10 @@ namespace DS4Windows
if (lvi != null && lvi.Checked) if (lvi != null && lvi.Checked)
pactions.Add(lvi.Text); pactions.Add(lvi.Text);
ProfileActions[device] = pactions; ProfileActions[device] = pactions;
if (lVActions.Items.Count >= 50) /*if (lVActions.Items.Count >= 50)
{ {
btnNewAction.Enabled = false; btnNewAction.Enabled = false;
} }*/
} }
private void nUDLSCurve_ValueChanged(object sender, EventArgs e) private void nUDLSCurve_ValueChanged(object sender, EventArgs e)

View File

@ -0,0 +1,458 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBLightbyBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>189, 21</value>
</data>
<data name="cBLightbyBattery.Text" xml:space="preserve">
<value>Barva při % stavu baterie</value>
</data>
<data name="cBDoubleTap.Location" type="System.Drawing.Point, System.Drawing">
<value>153, 48</value>
</data>
<data name="cBDoubleTap.Size" type="System.Drawing.Size, System.Drawing">
<value>78, 21</value>
</data>
<data name="cBDoubleTap.Text" xml:space="preserve">
<value>Dvojklik</value>
</data>
<data name="cBTap.Size" type="System.Drawing.Size, System.Drawing">
<value>77, 21</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>Ťuknutí</value>
</data>
<data name="nUDTap.Location" type="System.Drawing.Point, System.Drawing">
<value>96, 48</value>
</data>
<data name="cBScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>163, 12</value>
</data>
<data name="cBScroll.Size" type="System.Drawing.Size, System.Drawing">
<value>78, 21</value>
</data>
<data name="cBScroll.Text" xml:space="preserve">
<value>Rolovat</value>
</data>
<data name="cBSlide.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 21</value>
</data>
<data name="cBSlide.Text" xml:space="preserve">
<value>Posunout</value>
</data>
<data name="nUDScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>246, 11</value>
</data>
<data name="nUDTouch.Location" type="System.Drawing.Point, System.Drawing">
<value>107, 11</value>
</data>
<data name="lbButtonMouseSens.Size" type="System.Drawing.Size, System.Drawing">
<value>92, 17</value>
</data>
<data name="lbButtonMouseSens.Text" xml:space="preserve">
<value>Citlivost myši:</value>
</data>
<data name="cBTouchpadJitterCompensation.Size" type="System.Drawing.Size, System.Drawing">
<value>170, 21</value>
</data>
<data name="cBTouchpadJitterCompensation.Text" xml:space="preserve">
<value>Kompenzace prodlevy</value>
</data>
<data name="lbIdleMinutes.Location" type="System.Drawing.Point, System.Drawing">
<value>248, 59</value>
</data>
<data name="lbIdleMinutes.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 17</value>
</data>
<data name="lbIdleMinutes.Text" xml:space="preserve">
<value>minut</value>
</data>
<data name="nUDIdleDisconnect.Location" type="System.Drawing.Point, System.Drawing">
<value>180, 55</value>
</data>
<data name="cBFlushHIDQueue.Size" type="System.Drawing.Size, System.Drawing">
<value>111, 21</value>
</data>
<data name="cBFlushHIDQueue.Text" xml:space="preserve">
<value>Vymazat HID</value>
</data>
<data name="btnRumbleHeavyTest.Location" type="System.Drawing.Point, System.Drawing">
<value>96, 9</value>
</data>
<data name="btnRumbleHeavyTest.Size" type="System.Drawing.Size, System.Drawing">
<value>89, 48</value>
</data>
<data name="btnRumbleHeavyTest.Text" xml:space="preserve">
<value>Otestovat těžké</value>
</data>
<data name="lbFull.Size" type="System.Drawing.Size, System.Drawing">
<value>39, 17</value>
</data>
<data name="lbFull.Text" xml:space="preserve">
<value>Plný:</value>
</data>
<data name="lbEmpty.Size" type="System.Drawing.Size, System.Drawing">
<value>64, 17</value>
</data>
<data name="lbEmpty.Text" xml:space="preserve">
<value>Prázdný:</value>
</data>
<data name="numUDMouseSens.Location" type="System.Drawing.Point, System.Drawing">
<value>96, 19</value>
</data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 244</value>
</data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>131, 6</value>
</data>
<data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>Výchozí</value>
</data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="ABXYToolStripMenuItem.Text" xml:space="preserve">
<value>Face talčítka</value>
</data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Šipky</value>
</data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>Ostatní</value>
</data>
<data name="cBDinput.Size" type="System.Drawing.Size, System.Drawing">
<value>157, 21</value>
</data>
<data name="cBDinput.Text" xml:space="preserve">
<value>Použít pouze Dinput</value>
</data>
<data name="cBLaunchProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 38</value>
</data>
<data name="cBLaunchProgram.Text" xml:space="preserve">
<value>Spustit program
s profilem</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>Procházet...</value>
</data>
<data name="cBMouseAccel.Location" type="System.Drawing.Point, System.Drawing">
<value>163, 20</value>
</data>
<data name="cBMouseAccel.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 21</value>
</data>
<data name="cBMouseAccel.Text" xml:space="preserve">
<value>Akcelerace myši</value>
</data>
<data name="cBControllerInput.Size" type="System.Drawing.Size, System.Drawing">
<value>175, 21</value>
</data>
<data name="cBControllerInput.Text" xml:space="preserve">
<value>pro mapování a zjištění</value>
</data>
<data name="cBIdleDisconnect.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 21</value>
</data>
<data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>Odpojit při nečinnosti</value>
</data>
<data name="cBFlashType.Items" xml:space="preserve">
<value>Blikat při</value>
</data>
<data name="cBFlashType.Items1" xml:space="preserve">
<value>Pulzovat při</value>
</data>
<data name="cBWhileCharging.Items" xml:space="preserve">
<value>Normální</value>
</data>
<data name="cBWhileCharging.Items1" xml:space="preserve">
<value>Pulsování</value>
</data>
<data name="cBWhileCharging.Items2" xml:space="preserve">
<value>Duha</value>
</data>
<data name="cBWhileCharging.Items3" xml:space="preserve">
<value>Barva</value>
</data>
<data name="btnRumbleLightTest.Location" type="System.Drawing.Point, System.Drawing">
<value>196, 9</value>
</data>
<data name="btnRumbleLightTest.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 48</value>
</data>
<data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>Otestovat lehké</value>
</data>
<data name="lbInputDelay.Size" type="System.Drawing.Size, System.Drawing">
<value>159, 17</value>
</data>
<data name="lbInputDelay.Text" xml:space="preserve">
<value>Prodleva vstupu: N/Ams</value>
</data>
<data name="lb6Accel.Location" type="System.Drawing.Point, System.Drawing">
<value>59, 131</value>
</data>
<data name="lb6Accel.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 17</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>Akcelerometr</value>
</data>
<data name="lb6Gryo.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 5</value>
</data>
<data name="lb6Gryo.Size" type="System.Drawing.Size, System.Drawing">
<value>69, 17</value>
</data>
<data name="lb6Gryo.Text" xml:space="preserve">
<value>Gyroskop</value>
</data>
<data name="lbControlTip.Text" xml:space="preserve">
<value>Klikněte na lightbar pro výběr barvy</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>Název</value>
</data>
<data name="cHAction.Text" xml:space="preserve">
<value>Akce</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>Nová akce</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>Upravit akci</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>Odstranit akci</value>
</data>
<data name="lbGyroInvert.Size" type="System.Drawing.Size, System.Drawing">
<value>55, 17</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>Obrátit:</value>
</data>
<data name="lbGyroTriggers.Text" xml:space="preserve">
<value>Triggery:</value>
</data>
<data name="lbGyroSens.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 17</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>Citlivost gyroskopu:</value>
</data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>242, 524</value>
</data>
<data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="circleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="squareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="triangleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="l1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="l2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="r1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="r2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="onTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="downToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="leftToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="rightToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="l3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="r3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Prst na touchpadu</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Dva prsty na touchpadu</value>
</data>
<data name="optionsToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="shareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="pSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>Vždy na</value>
</data>
</root>

View File

@ -238,6 +238,9 @@
<data name="cbStartTouchpadOff.Text" xml:space="preserve"> <data name="cbStartTouchpadOff.Text" xml:space="preserve">
<value>Starte mit Gleiten/Blättern aus</value> <value>Starte mit Gleiten/Blättern aus</value>
</data> </data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>154, 244</value>
</data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value> <value>153, 26</value>
</data> </data>
@ -250,6 +253,12 @@
<data name="defaultToolStripMenuItem.Text" xml:space="preserve"> <data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>Standard</value> <value>Standard</value>
</data> </data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value>
</data>
<data name="DpadToolStripMenuItem.Text" xml:space="preserve">
<value>Steuerkreuz</value>
</data>
<data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>156, 26</value> <value>156, 26</value>
</data> </data>
@ -268,11 +277,11 @@
<data name="tSMIDPadInvertedY.Text" xml:space="preserve"> <data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>Invertiert Y</value> <value>Invertiert Y</value>
</data> </data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value> <value>153, 26</value>
</data> </data>
<data name="DpadToolStripMenuItem.Text" xml:space="preserve"> <data name="LSToolStripMenuItem.Text" xml:space="preserve">
<value>Steuerkreuz</value> <value>Linker Stick</value>
</data> </data>
<data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>156, 26</value> <value>156, 26</value>
@ -292,11 +301,11 @@
<data name="tSMILSInvertedY.Text" xml:space="preserve"> <data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>Invertiert Y</value> <value>Invertiert Y</value>
</data> </data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value> <value>153, 26</value>
</data> </data>
<data name="LSToolStripMenuItem.Text" xml:space="preserve"> <data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>Linker Stick</value> <value>Rechter Stick</value>
</data> </data>
<data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>156, 26</value> <value>156, 26</value>
@ -316,38 +325,38 @@
<data name="tSMIRSInvertedY.Text" xml:space="preserve"> <data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>Invertiert Y</value> <value>Invertiert Y</value>
</data> </data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value>
</data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>Rechter Stick</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value> <value>153, 26</value>
</data> </data>
<data name="ABXYToolStripMenuItem.Text" xml:space="preserve"> <data name="ABXYToolStripMenuItem.Text" xml:space="preserve">
<value>Gesichtsknöpfe</value> <value>Gesichtsknöpfe</value>
</data> </data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 26</value> <value>148, 26</value>
</data> </data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve"> <data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>Scancode</value> <value>Scancode</value>
</data> </data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value> <value>153, 26</value>
</data> </data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Pfeiltasten</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 26</value> <value>148, 26</value>
</data> </data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve"> <data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Scancode</value> <value>Scancode</value>
</data> </data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 26</value> <value>153, 26</value>
</data> </data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve"> <data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>Pfeiltasten</value> <value>Maus</value>
</data> </data>
<data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing"> <data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>156, 26</value> <value>156, 26</value>
@ -367,14 +376,8 @@
<data name="tSMIMouseInvertedY.Text" xml:space="preserve"> <data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>Invertiert Y</value> <value>Invertiert Y</value>
</data> </data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="gBOther.Text" xml:space="preserve">
<value>153, 26</value> <value>Andere</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>Maus</value>
</data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>154, 244</value>
</data> </data>
<data name="cBDinput.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBDinput.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 183</value> <value>7, 183</value>
@ -446,8 +449,8 @@
<data name="cBIdleDisconnect.Text" xml:space="preserve"> <data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>Trenne, wenn nicht benutzt</value> <value>Trenne, wenn nicht benutzt</value>
</data> </data>
<data name="gBOther.Text" xml:space="preserve"> <data name="gBLightbar.Text" xml:space="preserve">
<value>Andere</value> <value>Lichtbalken</value>
</data> </data>
<data name="lbRainbowB.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbRainbowB.Location" type="System.Drawing.Point, System.Drawing">
<value>288, 271</value> <value>288, 271</value>
@ -482,8 +485,8 @@
<data name="lbWhileCharging.Text" xml:space="preserve"> <data name="lbWhileCharging.Text" xml:space="preserve">
<value>Während des Ladens:</value> <value>Während des Ladens:</value>
</data> </data>
<data name="gBLightbar.Text" xml:space="preserve"> <data name="gBRumble.Text" xml:space="preserve">
<value>Lichtbalken</value> <value>Vibration</value>
</data> </data>
<data name="btnRumbleLightTest.Location" type="System.Drawing.Point, System.Drawing"> <data name="btnRumbleLightTest.Location" type="System.Drawing.Point, System.Drawing">
<value>214, 19</value> <value>214, 19</value>
@ -494,9 +497,6 @@
<data name="btnRumbleLightTest.Text" xml:space="preserve"> <data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>Teste schwache Vibration</value> <value>Teste schwache Vibration</value>
</data> </data>
<data name="gBRumble.Text" xml:space="preserve">
<value>Vibration</value>
</data>
<data name="lbRSTip.Text" xml:space="preserve"> <data name="lbRSTip.Text" xml:space="preserve">
<value>Rechter Stick</value> <value>Rechter Stick</value>
</data> </data>
@ -512,6 +512,12 @@
<data name="lbSATip.Text" xml:space="preserve"> <data name="lbSATip.Text" xml:space="preserve">
<value>Sixaxis: X Achse ist vertauscht, um sie leichter lesen zu können</value> <value>Sixaxis: X Achse ist vertauscht, um sie leichter lesen zu können</value>
</data> </data>
<data name="pnlSixaxis.Location" type="System.Drawing.Point, System.Drawing">
<value>254, 292</value>
</data>
<data name="pnlSixaxis.Size" type="System.Drawing.Size, System.Drawing">
<value>277, 156</value>
</data>
<data name="tBsixaxisAccelX.Location" type="System.Drawing.Point, System.Drawing"> <data name="tBsixaxisAccelX.Location" type="System.Drawing.Point, System.Drawing">
<value>163, 30</value> <value>163, 30</value>
</data> </data>
@ -539,8 +545,8 @@
<data name="tBsixaxisAccelZ.Location" type="System.Drawing.Point, System.Drawing"> <data name="tBsixaxisAccelZ.Location" type="System.Drawing.Point, System.Drawing">
<value>163, 98</value> <value>163, 98</value>
</data> </data>
<data name="pnlSixaxis.Size" type="System.Drawing.Size, System.Drawing"> <data name="tPControls.Text" xml:space="preserve">
<value>277, 156</value> <value>Steuerung</value>
</data> </data>
<data name="lbControlTip.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbControlTip.Location" type="System.Drawing.Point, System.Drawing">
<value>102, 295</value> <value>102, 295</value>
@ -548,8 +554,8 @@
<data name="lbControlTip.Text" xml:space="preserve"> <data name="lbControlTip.Text" xml:space="preserve">
<value>Drücke den Lichtbalken für den Farbenauswähler</value> <value>Drücke den Lichtbalken für den Farbenauswähler</value>
</data> </data>
<data name="tPControls.Text" xml:space="preserve"> <data name="tPSpecial.Text" xml:space="preserve">
<value>Steuerung</value> <value>Spezialaktionen</value>
</data> </data>
<data name="cHTrigger.Text" xml:space="preserve"> <data name="cHTrigger.Text" xml:space="preserve">
<value>Auslöser</value> <value>Auslöser</value>
@ -569,9 +575,6 @@
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Halte die ausgewählten Tasten, um die Aktion auszuführen. Hake die Aktion an, um sie im Spiel zu benutzen</value> <value>Halte die ausgewählten Tasten, um die Aktion auszuführen. Hake die Aktion an, um sie im Spiel zu benutzen</value>
</data> </data>
<data name="tPSpecial.Text" xml:space="preserve">
<value>Spezialaktionen</value>
</data>
<data name="tPDeadzone.Text" xml:space="preserve"> <data name="tPDeadzone.Text" xml:space="preserve">
<value>Toter Bereich</value> <value>Toter Bereich</value>
</data> </data>
@ -611,6 +614,9 @@
<data name="lbGyroSens.Text" xml:space="preserve"> <data name="lbGyroSens.Text" xml:space="preserve">
<value>Gyro Empfindlichkeit:</value> <value>Gyro Empfindlichkeit:</value>
</data> </data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>290, 524</value>
</data>
<data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>289, 26</value> <value>289, 26</value>
</data> </data>
@ -680,7 +686,4 @@
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve"> <data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>Immer an</value> <value>Immer an</value>
</data> </data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>290, 524</value>
</data>
</root> </root>

View File

@ -0,0 +1,579 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBLightbyBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 21</value>
</data>
<data name="cBLightbyBattery.Text" xml:space="preserve">
<value>Χρώμα ανάλογα με το ποσοστό της μπαταρίας %</value>
</data>
<data name="lbspc.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 17</value>
</data>
<data name="lbspc.Text" xml:space="preserve">
<value>Δευτερόλεπτα/Περίοδος</value>
</data>
<data name="cBDoubleTap.Location" type="System.Drawing.Point, System.Drawing">
<value>160, 48</value>
</data>
<data name="cBDoubleTap.Size" type="System.Drawing.Size, System.Drawing">
<value>118, 21</value>
</data>
<data name="cBDoubleTap.Text" xml:space="preserve">
<value>Διπλό Πάτημα</value>
</data>
<data name="cBTap.Size" type="System.Drawing.Size, System.Drawing">
<value>79, 21</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>Πάτημα</value>
</data>
<data name="nUDTap.Location" type="System.Drawing.Point, System.Drawing">
<value>103, 48</value>
</data>
<data name="cBScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>165, 13</value>
</data>
<data name="cBScroll.Size" type="System.Drawing.Size, System.Drawing">
<value>73, 21</value>
</data>
<data name="cBScroll.Text" xml:space="preserve">
<value>Κύλιση</value>
</data>
<data name="cBSlide.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 21</value>
</data>
<data name="cBSlide.Text" xml:space="preserve">
<value>Ολίσθηση</value>
</data>
<data name="nUDScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>239, 12</value>
</data>
<data name="nUDTouch.Location" type="System.Drawing.Point, System.Drawing">
<value>109, 12</value>
</data>
<data name="lbButtonMouseSens.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 17</value>
</data>
<data name="lbButtonMouseSens.Text" xml:space="preserve">
<value>Ευαισθησία ποντικιού:</value>
</data>
<data name="cBTouchpadJitterCompensation.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 21</value>
</data>
<data name="cBTouchpadJitterCompensation.Text" xml:space="preserve">
<value>Αντιστάθμιση Jitter</value>
</data>
<data name="lbIdleMinutes.Size" type="System.Drawing.Size, System.Drawing">
<value>47, 17</value>
</data>
<data name="lbIdleMinutes.Text" xml:space="preserve">
<value>Λεπτά</value>
</data>
<data name="btnRumbleHeavyTest.Text" xml:space="preserve">
<value>Βαριά Δόνηση</value>
</data>
<data name="lbFull.Size" type="System.Drawing.Size, System.Drawing">
<value>58, 17</value>
</data>
<data name="lbFull.Text" xml:space="preserve">
<value>Γεμάτο:</value>
</data>
<data name="lbEmpty.Size" type="System.Drawing.Size, System.Drawing">
<value>47, 17</value>
</data>
<data name="lbEmpty.Text" xml:space="preserve">
<value>Άδειο:</value>
</data>
<data name="numUDMouseSens.Location" type="System.Drawing.Point, System.Drawing">
<value>160, 18</value>
</data>
<data name="gBTouchpad.Text" xml:space="preserve">
<value>Πληκτρολόγιο αφής</value>
</data>
<data name="cbStartTouchpadOff.Size" type="System.Drawing.Size, System.Drawing">
<value>213, 21</value>
</data>
<data name="cbStartTouchpadOff.Text" xml:space="preserve">
<value>Εκκίνηση με ολίσθηση/κύλιση</value>
</data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>207, 244</value>
</data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>203, 6</value>
</data>
<data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>Προεπιλεγμένες</value>
</data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIDPadInverted.Text" xml:space="preserve">
<value>Aνεστραμμένη</value>
</data>
<data name="tSMIDPadInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIDPadInvertedX.Text" xml:space="preserve">
<value>Ανεστραμμένο Χ</value>
</data>
<data name="tSMIDPadInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>Ανεστραμμένο Υ</value>
</data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="LSToolStripMenuItem.Text" xml:space="preserve">
<value>Αριστερός Μοχλός</value>
</data>
<data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMILSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMILSInvertedX.Text" xml:space="preserve">
<value>Ανεστραμμένο Χ</value>
</data>
<data name="tSMILSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>Ανεστραμμένο Υ</value>
</data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>Δεξιός Μοχλός</value>
</data>
<data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIRSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIRSInvertedX.Text" xml:space="preserve">
<value>Ανεστραμμένο Χ</value>
</data>
<data name="tSMIRSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>Ανεστραμμένο Υ</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>224, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Σάρωση Κωδικού</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Πλήκτρα κατεύθυνσης</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>224, 26</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Σάρωση Κωδικού</value>
</data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>206, 26</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>Ποντίκι</value>
</data>
<data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIMouseInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIMouseInvertedX.Text" xml:space="preserve">
<value>Ανεστραμμένο Χ</value>
</data>
<data name="tSMIMouseInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>198, 26</value>
</data>
<data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>Ανεστραμμένο Υ</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>Άλλα</value>
</data>
<data name="pBProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>303, 162</value>
</data>
<data name="cBLaunchProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>191, 38</value>
</data>
<data name="cBLaunchProgram.Text" xml:space="preserve">
<value>Εκκίνηση Προγράμματος
με προφίλ</value>
</data>
<data name="btnBrowse.Location" type="System.Drawing.Point, System.Drawing">
<value>196, 164</value>
</data>
<data name="btnBrowse.Size" type="System.Drawing.Size, System.Drawing">
<value>101, 29</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>Αναζήτηση...</value>
</data>
<data name="lbUseController.Size" type="System.Drawing.Size, System.Drawing">
<value>133, 17</value>
</data>
<data name="lbUseController.Text" xml:space="preserve">
<value>Χρήση Χειριστηρίου</value>
</data>
<data name="cBMouseAccel.Location" type="System.Drawing.Point, System.Drawing">
<value>230, 10</value>
</data>
<data name="cBMouseAccel.Size" type="System.Drawing.Size, System.Drawing">
<value>106, 38</value>
</data>
<data name="cBMouseAccel.Text" xml:space="preserve">
<value>Επιτάχυνση
ποντικιού</value>
</data>
<data name="cBIdleDisconnect.Size" type="System.Drawing.Size, System.Drawing">
<value>248, 21</value>
</data>
<data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>Αποσύνδεση άεργου χειριστηρίου?</value>
</data>
<data name="gBLightbar.Text" xml:space="preserve">
<value>Φως Μπάρας</value>
</data>
<data name="cBWhileCharging.Items" xml:space="preserve">
<value>Κανονικό</value>
</data>
<data name="cBWhileCharging.Items1" xml:space="preserve">
<value>Παλμός</value>
</data>
<data name="cBWhileCharging.Items2" xml:space="preserve">
<value>Ουράνιο Τόξο</value>
</data>
<data name="cBWhileCharging.Items3" xml:space="preserve">
<value>Χρώμα</value>
</data>
<data name="lbWhileCharging.Size" type="System.Drawing.Size, System.Drawing">
<value>95, 17</value>
</data>
<data name="lbWhileCharging.Text" xml:space="preserve">
<value>Ενώ Φορτίζει:</value>
</data>
<data name="gBRumble.Text" xml:space="preserve">
<value>Δόνηση</value>
</data>
<data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>Ελαφριά Δόνηση</value>
</data>
<data name="lbRSTip.Text" xml:space="preserve">
<value>Δεξί Stick</value>
</data>
<data name="lbInputDelay.Size" type="System.Drawing.Size, System.Drawing">
<value>200, 17</value>
</data>
<data name="lbInputDelay.Text" xml:space="preserve">
<value>Καθυστέρηση Εισόδου: N/Ams</value>
</data>
<data name="lbLSTip.Text" xml:space="preserve">
<value>Αριστερό Stick</value>
</data>
<data name="lb6Accel.Location" type="System.Drawing.Point, System.Drawing">
<value>70, 131</value>
</data>
<data name="lb6Accel.Size" type="System.Drawing.Size, System.Drawing">
<value>80, 17</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>Επιτάχυνση</value>
</data>
<data name="lb6Gryo.Size" type="System.Drawing.Size, System.Drawing">
<value>82, 17</value>
</data>
<data name="lb6Gryo.Text" xml:space="preserve">
<value>Γυροσκόπιο</value>
</data>
<data name="tPControls.Text" xml:space="preserve">
<value>Xειρισμός</value>
</data>
<data name="lbControlTip.Text" xml:space="preserve">
<value>Κάνε κλίκ στην μπάρα χρωμάτων για επιλογή χρώματος</value>
</data>
<data name="tPSpecial.Text" xml:space="preserve">
<value>Ειδικές Λειτουργίες</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>Όνομα</value>
</data>
<data name="cHTrigger.Text" xml:space="preserve">
<value>Μοχλός</value>
</data>
<data name="cHAction.Text" xml:space="preserve">
<value>Ενέργεια</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>Καινούργια Ενέργεια</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>Επεξεργασία Ενέργειας</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>Αφαίρεση Ενέργειας</value>
</data>
<data name="lbActionsTip.Text" xml:space="preserve">
<value>.</value>
</data>
<data name="tPDeadzone.Text" xml:space="preserve">
<value>Νεκρή ζώνη</value>
</data>
<data name="tPCurve.Text" xml:space="preserve">
<value>Καμπύλη</value>
</data>
<data name="rBSAMouse.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 21</value>
</data>
<data name="rBSAMouse.Text" xml:space="preserve">
<value>Χρήση ως Ποντίκι</value>
</data>
<data name="cBGyroInvertY.Location" type="System.Drawing.Point, System.Drawing">
<value>158, 93</value>
</data>
<data name="cBGyroInvertX.Location" type="System.Drawing.Point, System.Drawing">
<value>104, 93</value>
</data>
<data name="lbGyroInvert.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 17</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>Αντιστροφή:</value>
</data>
<data name="lbGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>81, 17</value>
</data>
<data name="lbGyroTriggers.Text" xml:space="preserve">
<value>Σκανδάλες:</value>
</data>
<data name="nUDGyroSensitivity.Location" type="System.Drawing.Point, System.Drawing">
<value>180, 55</value>
</data>
<data name="lbGyroSens.Size" type="System.Drawing.Size, System.Drawing">
<value>165, 17</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>Ευαισθησία Γυροσκόπιου</value>
</data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>340, 524</value>
</data>
<data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="circleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="squareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="triangleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="l1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="l2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="r1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="r2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="onTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="downToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="leftToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="rightToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="l3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="r3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Δάχτυλο στο πληκτρολόφιο αφής</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Δύο δάχτυλα στο πληκτρολόγιο αφής</value>
</data>
<data name="optionsToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="shareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="pSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>339, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>Πάντα ενεργοποιημένο</value>
</data>
</root>

View File

@ -545,7 +545,7 @@
<value>Eliminar Acción</value> <value>Eliminar Acción</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Mantenga los controles seleccionados para llevar a cabo una acción, compruebe la acción para usarlo mientras se carga el perfil. Máx. 50 acciones</value> <value>Mantenga los controles seleccionados para llevar a cabo una acción, compruebe la acción para usarlo mientras se carga el perfil.</value>
</data> </data>
<data name="tPSpecial.Text" xml:space="preserve"> <data name="tPSpecial.Text" xml:space="preserve">
<value>Acciones Especiales</value> <value>Acciones Especiales</value>

View File

@ -0,0 +1,610 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBLightbyBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 21</value>
</data>
<data name="cBLightbyBattery.Text" xml:space="preserve">
<value>Väri akun tilan mukaan</value>
</data>
<data name="lbspc.Size" type="System.Drawing.Size, System.Drawing">
<value>92, 17</value>
</data>
<data name="lbspc.Text" xml:space="preserve">
<value>sekuntia/sykli</value>
</data>
<data name="cBDoubleTap.Size" type="System.Drawing.Size, System.Drawing">
<value>122, 21</value>
</data>
<data name="cBDoubleTap.Text" xml:space="preserve">
<value>Tuplapainallus</value>
</data>
<data name="cBTap.Size" type="System.Drawing.Size, System.Drawing">
<value>91, 21</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>Napautus</value>
</data>
<data name="cBScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>210, 12</value>
</data>
<data name="cBScroll.Size" type="System.Drawing.Size, System.Drawing">
<value>73, 21</value>
</data>
<data name="cBScroll.Text" xml:space="preserve">
<value>Selaus</value>
</data>
<data name="cBSlide.Size" type="System.Drawing.Size, System.Drawing">
<value>143, 21</value>
</data>
<data name="cBSlide.Text" xml:space="preserve">
<value>Osoittimen ohjaus</value>
</data>
<data name="nUDScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>284, 11</value>
</data>
<data name="nUDTouch.Location" type="System.Drawing.Point, System.Drawing">
<value>154, 11</value>
</data>
<data name="lbButtonMouseSens.Size" type="System.Drawing.Size, System.Drawing">
<value>126, 17</value>
</data>
<data name="lbButtonMouseSens.Text" xml:space="preserve">
<value>Osoittimen nopeus</value>
</data>
<data name="cBlowerRCOn.Size" type="System.Drawing.Size, System.Drawing">
<value>261, 21</value>
</data>
<data name="cBlowerRCOn.Text" xml:space="preserve">
<value>Levyn alaoikea on hiiren oikea nappi</value>
</data>
<data name="cBTouchpadJitterCompensation.Size" type="System.Drawing.Size, System.Drawing">
<value>113, 21</value>
</data>
<data name="cBTouchpadJitterCompensation.Text" xml:space="preserve">
<value>Häiriönpoisto</value>
</data>
<data name="lbIdleMinutes.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 17</value>
</data>
<data name="lbIdleMinutes.Text" xml:space="preserve">
<value>minuuttia</value>
</data>
<data name="cBFlushHIDQueue.Size" type="System.Drawing.Size, System.Drawing">
<value>116, 21</value>
</data>
<data name="cBFlushHIDQueue.Text" xml:space="preserve">
<value>Tyhjennä HID</value>
</data>
<data name="btnRumbleHeavyTest.Location" type="System.Drawing.Point, System.Drawing">
<value>99, 12</value>
</data>
<data name="btnRumbleHeavyTest.Size" type="System.Drawing.Size, System.Drawing">
<value>89, 42</value>
</data>
<data name="btnRumbleHeavyTest.Text" xml:space="preserve">
<value>Testaa voimakasta</value>
</data>
<data name="lbFull.Size" type="System.Drawing.Size, System.Drawing">
<value>60, 17</value>
</data>
<data name="lbFull.Text" xml:space="preserve">
<value>Täynnä:</value>
</data>
<data name="lbEmpty.Size" type="System.Drawing.Size, System.Drawing">
<value>47, 17</value>
</data>
<data name="lbEmpty.Text" xml:space="preserve">
<value>Tyhjä:</value>
</data>
<data name="gBTouchpad.Text" xml:space="preserve">
<value>Kosketuslevy</value>
</data>
<data name="cbStartTouchpadOff.Size" type="System.Drawing.Size, System.Drawing">
<value>269, 21</value>
</data>
<data name="cbStartTouchpadOff.Text" xml:space="preserve">
<value>Kytke osoitintoiminnot pois aloittaessa</value>
</data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>143, 244</value>
</data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>139, 6</value>
</data>
<data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>Oletus</value>
</data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIDPadInverted.Text" xml:space="preserve">
<value>Käännetty</value>
</data>
<data name="tSMIDPadInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIDPadInvertedX.Text" xml:space="preserve">
<value>Käännetty X</value>
</data>
<data name="tSMIDPadInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>Käännetty Y</value>
</data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="LSToolStripMenuItem.Text" xml:space="preserve">
<value>Vasen tikku</value>
</data>
<data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMILSInverted.Text" xml:space="preserve">
<value>Käännetty</value>
</data>
<data name="tSMILSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMILSInvertedX.Text" xml:space="preserve">
<value>Käännetty X</value>
</data>
<data name="tSMILSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>Käännetty Y</value>
</data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>Oikea tikku</value>
</data>
<data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIRSInverted.Text" xml:space="preserve">
<value>Käännetty</value>
</data>
<data name="tSMIRSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIRSInvertedX.Text" xml:space="preserve">
<value>Käännetty X</value>
</data>
<data name="tSMIRSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>Käännetty Y</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="ABXYToolStripMenuItem.Text" xml:space="preserve">
<value>Etupainikkeet</value>
</data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>170, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>Scan Codella</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Nuolinapit</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>170, 26</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Scan Codella</value>
</data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 26</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>Hiiri</value>
</data>
<data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIMouseInverted.Text" xml:space="preserve">
<value>Käännetty</value>
</data>
<data name="tSMIMouseInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIMouseInvertedX.Text" xml:space="preserve">
<value>Käännetty X</value>
</data>
<data name="tSMIMouseInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 26</value>
</data>
<data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>Käännetty Y</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>Muut</value>
</data>
<data name="cBDinput.Size" type="System.Drawing.Size, System.Drawing">
<value>154, 21</value>
</data>
<data name="cBDinput.Text" xml:space="preserve">
<value>käytä vain Dinput:ia</value>
</data>
<data name="cBLaunchProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 38</value>
</data>
<data name="cBLaunchProgram.Text" xml:space="preserve">
<value>Käynnistä ohjelma
profiilissa</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>Selaa...</value>
</data>
<data name="lbUseController.Text" xml:space="preserve">
<value>Käytä ohjainta</value>
</data>
<data name="cBMouseAccel.Size" type="System.Drawing.Size, System.Drawing">
<value>101, 38</value>
</data>
<data name="cBMouseAccel.Text" xml:space="preserve">
<value>Osoittimen
kiihtyvyys</value>
</data>
<data name="cBControllerInput.Location" type="System.Drawing.Point, System.Drawing">
<value>156, 85</value>
</data>
<data name="cBControllerInput.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 38</value>
</data>
<data name="cBControllerInput.Text" xml:space="preserve">
<value>näppäinasetuksiin ja
asetusten lukuun</value>
</data>
<data name="cBIdleDisconnect.Size" type="System.Drawing.Size, System.Drawing">
<value>295, 21</value>
</data>
<data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>Katkaise yhteys kun ohjain on käyttämättä</value>
</data>
<data name="gBLightbar.Text" xml:space="preserve">
<value>Valopalkki</value>
</data>
<data name="cBFlashType.Items" xml:space="preserve">
<value>Väläytä kun</value>
</data>
<data name="cBFlashType.Items1" xml:space="preserve">
<value>Pulssi kun</value>
</data>
<data name="cBWhileCharging.Items" xml:space="preserve">
<value>Normaali</value>
</data>
<data name="cBWhileCharging.Items1" xml:space="preserve">
<value>Pulssi</value>
</data>
<data name="cBWhileCharging.Items2" xml:space="preserve">
<value>Sateenkaari</value>
</data>
<data name="cBWhileCharging.Items3" xml:space="preserve">
<value>Väri</value>
</data>
<data name="lbWhileCharging.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 17</value>
</data>
<data name="lbWhileCharging.Text" xml:space="preserve">
<value>Latautuessa</value>
</data>
<data name="gBRumble.Text" xml:space="preserve">
<value>Värinä</value>
</data>
<data name="btnRumbleLightTest.Location" type="System.Drawing.Point, System.Drawing">
<value>203, 12</value>
</data>
<data name="btnRumbleLightTest.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 42</value>
</data>
<data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>Testaa hiljaista</value>
</data>
<data name="lbRSTip.Text" xml:space="preserve">
<value>Oikea tikku</value>
</data>
<data name="lbInputDelay.Size" type="System.Drawing.Size, System.Drawing">
<value>87, 17</value>
</data>
<data name="lbInputDelay.Text" xml:space="preserve">
<value>Viive: N/Ams</value>
</data>
<data name="lbLSTip.Text" xml:space="preserve">
<value>Vasen tikku</value>
</data>
<data name="lbSATip.Text" xml:space="preserve">
<value>Sixaxis: X-akseli on käänteinen lukemisen helpottamiseksi</value>
</data>
<data name="lb6Accel.Location" type="System.Drawing.Point, System.Drawing">
<value>86, 6</value>
</data>
<data name="lb6Accel.Size" type="System.Drawing.Size, System.Drawing">
<value>64, 17</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>Kiihdytys</value>
</data>
<data name="tPControls.Text" xml:space="preserve">
<value>Kontrollit</value>
</data>
<data name="lbControlTip.Text" xml:space="preserve">
<value>Klikkaa valopalkkia valitaksesi värin</value>
</data>
<data name="tPSpecial.Text" xml:space="preserve">
<value>Erikoistoiminnot</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>Nimi</value>
</data>
<data name="cHTrigger.Text" xml:space="preserve">
<value>Liipaisin</value>
</data>
<data name="cHAction.Text" xml:space="preserve">
<value>Toiminto</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>Uusi toiminto</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>Muokkaa toimintoa</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>Poista toiminto</value>
</data>
<data name="lbActionsTip.Text" xml:space="preserve">
<value>Pidä valittuja näppäimiä pohjassa tehdäksesi valitun toiminnon. Valitse toiminto käyttääksesi sitä tässä profiilissa. Max. 50 toimintoa.</value>
</data>
<data name="tPCurve.Text" xml:space="preserve">
<value>Kurvi</value>
</data>
<data name="rBSAControls.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 21</value>
</data>
<data name="rBSAControls.Text" xml:space="preserve">
<value>Käytä painikkeina</value>
</data>
<data name="rBSAMouse.Size" type="System.Drawing.Size, System.Drawing">
<value>112, 21</value>
</data>
<data name="rBSAMouse.Text" xml:space="preserve">
<value>Käytä hiirenä</value>
</data>
<data name="cBGyroInvertY.Location" type="System.Drawing.Point, System.Drawing">
<value>153, 93</value>
</data>
<data name="cBGyroInvertX.Location" type="System.Drawing.Point, System.Drawing">
<value>99, 93</value>
</data>
<data name="lbGyroInvert.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 17</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>Käänteinen:</value>
</data>
<data name="lbGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>78, 17</value>
</data>
<data name="lbGyroTriggers.Text" xml:space="preserve">
<value>Liipaisimet:</value>
</data>
<data name="lbGyroSens.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 17</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>Gyroskoopin herkkyys</value>
</data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>248, 524</value>
</data>
<data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="circleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="squareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="triangleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="l1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="l2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="r1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="r2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="onTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="downToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="leftToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="rightToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="l3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="r3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Sormi kosketuslevyllä</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>2 sormea kosketuslevyllä</value>
</data>
<data name="optionsToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="shareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="pSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>247, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>Aina päällä</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,509 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBLightbyBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>182, 21</value>
</data>
<data name="cBLightbyBattery.Text" xml:space="preserve">
<value>Warna sesuai % Baterai</value>
</data>
<data name="lbspc.Size" type="System.Drawing.Size, System.Drawing">
<value>74, 17</value>
</data>
<data name="lbspc.Text" xml:space="preserve">
<value>detik/cycle</value>
</data>
<data name="cBDoubleTap.Location" type="System.Drawing.Point, System.Drawing">
<value>154, 48</value>
</data>
<data name="cBDoubleTap.Size" type="System.Drawing.Size, System.Drawing">
<value>107, 21</value>
</data>
<data name="cBDoubleTap.Text" xml:space="preserve">
<value>Tekan 2 kali</value>
</data>
<data name="cBTap.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 21</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>Tekan</value>
</data>
<data name="nUDTap.Location" type="System.Drawing.Point, System.Drawing">
<value>97, 48</value>
</data>
<data name="lbButtonMouseSens.Size" type="System.Drawing.Size, System.Drawing">
<value>129, 17</value>
</data>
<data name="lbButtonMouseSens.Text" xml:space="preserve">
<value>Sensitivitas Mouse:</value>
</data>
<data name="lbIdleMinutes.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 17</value>
</data>
<data name="lbIdleMinutes.Text" xml:space="preserve">
<value>menit</value>
</data>
<data name="btnRumbleHeavyTest.Location" type="System.Drawing.Point, System.Drawing">
<value>96, 9</value>
</data>
<data name="btnRumbleHeavyTest.Size" type="System.Drawing.Size, System.Drawing">
<value>89, 44</value>
</data>
<data name="btnRumbleHeavyTest.Text" xml:space="preserve">
<value>Test Getaran (Kuat)</value>
</data>
<data name="lbFull.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 17</value>
</data>
<data name="lbFull.Text" xml:space="preserve">
<value>Penuh:</value>
</data>
<data name="lbEmpty.Size" type="System.Drawing.Size, System.Drawing">
<value>60, 17</value>
</data>
<data name="lbEmpty.Text" xml:space="preserve">
<value>Kosong:</value>
</data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 244</value>
</data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>144, 6</value>
</data>
<data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIDPadInverted.Text" xml:space="preserve">
<value>Dibalik</value>
</data>
<data name="tSMIDPadInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIDPadInvertedX.Text" xml:space="preserve">
<value>X Terbalik</value>
</data>
<data name="tSMIDPadInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>Y Terbalik</value>
</data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMILSInverted.Text" xml:space="preserve">
<value>Dibalik</value>
</data>
<data name="tSMILSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMILSInvertedX.Text" xml:space="preserve">
<value>X Terbalik</value>
</data>
<data name="tSMILSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>Y Terbalik</value>
</data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIRSInverted.Text" xml:space="preserve">
<value>Dibalik</value>
</data>
<data name="tSMIRSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIRSInvertedX.Text" xml:space="preserve">
<value>X Terbalik</value>
</data>
<data name="tSMIRSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>Y Terbalik</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>185, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Pindai Kode</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Tombol Panah</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>185, 26</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Pindai Kode</value>
</data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>147, 26</value>
</data>
<data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIMouseInverted.Text" xml:space="preserve">
<value>Dibalik</value>
</data>
<data name="tSMIMouseInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIMouseInvertedX.Text" xml:space="preserve">
<value>X Terbalik</value>
</data>
<data name="tSMIMouseInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 26</value>
</data>
<data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>Y Terbalik</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>Lainnya</value>
</data>
<data name="cBDinput.Size" type="System.Drawing.Size, System.Drawing">
<value>178, 21</value>
</data>
<data name="cBDinput.Text" xml:space="preserve">
<value>Hanya Gunakan Dinput</value>
</data>
<data name="lbUseController.Size" type="System.Drawing.Size, System.Drawing">
<value>131, 17</value>
</data>
<data name="lbUseController.Text" xml:space="preserve">
<value>Gunakan Controller</value>
</data>
<data name="cBMouseAccel.Location" type="System.Drawing.Point, System.Drawing">
<value>228, 12</value>
</data>
<data name="cBMouseAccel.Text" xml:space="preserve">
<value>Mouse
Acceleration</value>
</data>
<data name="nUDSixaxis.Location" type="System.Drawing.Point, System.Drawing">
<value>148, 93</value>
</data>
<data name="cBControllerInput.Location" type="System.Drawing.Point, System.Drawing">
<value>223, 85</value>
</data>
<data name="cBControllerInput.Size" type="System.Drawing.Size, System.Drawing">
<value>109, 38</value>
</data>
<data name="cBControllerInput.Text" xml:space="preserve">
<value>for Mapping
and readout</value>
</data>
<data name="cBFlashType.Items" xml:space="preserve">
<value>Kedip</value>
</data>
<data name="cBWhileCharging.Items2" xml:space="preserve">
<value>Pelangi</value>
</data>
<data name="cBWhileCharging.Items3" xml:space="preserve">
<value>Warna</value>
</data>
<data name="cBWhileCharging.Location" type="System.Drawing.Point, System.Drawing">
<value>124, 207</value>
</data>
<data name="btnChargingColor.Location" type="System.Drawing.Point, System.Drawing">
<value>282, 210</value>
</data>
<data name="lbWhileCharging.Size" type="System.Drawing.Size, System.Drawing">
<value>114, 17</value>
</data>
<data name="lbWhileCharging.Text" xml:space="preserve">
<value>Ketika Di Charge</value>
</data>
<data name="gBRumble.Text" xml:space="preserve">
<value>Getaran</value>
</data>
<data name="btnRumbleLightTest.Location" type="System.Drawing.Point, System.Drawing">
<value>196, 9</value>
</data>
<data name="btnRumbleLightTest.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 44</value>
</data>
<data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>Test Getaran (Ringan)</value>
</data>
<data name="lbSATip.Text" xml:space="preserve">
<value>Sixaxis: X axis dibalik agar lebih mudah dibaca</value>
</data>
<data name="lb6Accel.Location" type="System.Drawing.Point, System.Drawing">
<value>64, 6</value>
</data>
<data name="lb6Accel.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 17</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>Accelometer</value>
</data>
<data name="lb6Gryo.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 6</value>
</data>
<data name="tPControls.Text" xml:space="preserve">
<value>Kontrol</value>
</data>
<data name="lbControlTip.Text" xml:space="preserve">
<value>Tekan lighbar untuk memilih warna</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>Nama</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>Baru</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>Edit</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>Hilangkan</value>
</data>
<data name="rBSAControls.Location" type="System.Drawing.Point, System.Drawing">
<value>180, 13</value>
</data>
<data name="rBSAControls.Size" type="System.Drawing.Size, System.Drawing">
<value>145, 38</value>
</data>
<data name="rBSAControls.Text" xml:space="preserve">
<value>Gunakan sebagai
Kontrol</value>
</data>
<data name="rBSAMouse.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 13</value>
</data>
<data name="rBSAMouse.Size" type="System.Drawing.Size, System.Drawing">
<value>145, 38</value>
</data>
<data name="rBSAMouse.Text" xml:space="preserve">
<value>Gunakan sebagai
Mouse</value>
</data>
<data name="lbGyroInvert.Size" type="System.Drawing.Size, System.Drawing">
<value>43, 17</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>Invert</value>
</data>
<data name="lbGyroSens.Size" type="System.Drawing.Size, System.Drawing">
<value>114, 17</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>Sensitivitas Gyro</value>
</data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>205, 524</value>
</data>
<data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="circleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="squareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="triangleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="l1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="l2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="r1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="r2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="onTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="downToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="leftToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="rightToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="l3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="r3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Jari di Touchpad</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>2 Jari di Touchpad</value>
</data>
<data name="optionsToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="shareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="pSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>Tetap nyala</value>
</data>
</root>

View File

@ -504,7 +504,7 @@ con profilo</value>
<value>Rimuovi Azione</value> <value>Rimuovi Azione</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Tieni premuti i controlli selezionati per effettuare un'azione, controlla l'Azione per usarla mentre il profilo è caricato. Massimo 50 azioni</value> <value>Tieni premuti i controlli selezionati per effettuare un'azione, controlla l'Azione per usarla mentre il profilo è caricato.</value>
</data> </data>
<data name="tPDeadzone.Text" xml:space="preserve"> <data name="tPDeadzone.Text" xml:space="preserve">
<value>Zona Morta</value> <value>Zona Morta</value>

View File

@ -0,0 +1,199 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBTap.Size" type="System.Drawing.Size, System.Drawing">
<value>59, 21</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>タップ</value>
</data>
<data name="cBScroll.Size" type="System.Drawing.Size, System.Drawing">
<value>83, 21</value>
</data>
<data name="cBScroll.Text" xml:space="preserve">
<value>スクロール</value>
</data>
<data name="cBSlide.Size" type="System.Drawing.Size, System.Drawing">
<value>71, 21</value>
</data>
<data name="cBSlide.Text" xml:space="preserve">
<value>スライド</value>
</data>
<data name="nUDScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>229, 11</value>
</data>
<data name="gBTouchpad.Text" xml:space="preserve">
<value>タッチパッド</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>デフォルト</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>マウス</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>その他</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>参照</value>
</data>
<data name="cBMouseAccel.Size" type="System.Drawing.Size, System.Drawing">
<value>154, 21</value>
</data>
<data name="gBLightbar.Text" xml:space="preserve">
<value>ライトバー</value>
</data>
<data name="gBRumble.Text" xml:space="preserve">
<value>振動</value>
</data>
<data name="lbRSTip.Text" xml:space="preserve">
<value>右スティック</value>
</data>
<data name="lbLSTip.Text" xml:space="preserve">
<value>左スティック</value>
</data>
<data name="lb6Accel.Size" type="System.Drawing.Size, System.Drawing">
<value>50, 17</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>加速度</value>
</data>
<data name="lb6Gryo.Size" type="System.Drawing.Size, System.Drawing">
<value>49, 17</value>
</data>
<data name="lb6Gryo.Text" xml:space="preserve">
<value>ジャイロ</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>名前</value>
</data>
<data name="cHTrigger.Text" xml:space="preserve">
<value>トリガー</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>新規アクション</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>アクションを編集</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>アクションを除去</value>
</data>
</root>

View File

@ -0,0 +1,390 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="ABXYToolStripMenuItem.Text" xml:space="preserve">
<value>문양 버튼</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>방향 버튼</value>
</data>
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>항상 켜짐</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>찾아보기..</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>동작 편집</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>새 동작</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>동작 삭제</value>
</data>
<data name="btnRumbleHeavyTest.Text" xml:space="preserve">
<value>강한 진동 테스트</value>
</data>
<data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>약한 진동 테스트</value>
</data>
<data name="cBControllerInput.Text" xml:space="preserve">
<value>매핑과 읽기를 위해 사용</value>
</data>
<data name="cBDinput.Text" xml:space="preserve">
<value>Dinput 만 사용</value>
</data>
<data name="cBDoubleTap.Text" xml:space="preserve">
<value>더블 탭</value>
</data>
<data name="cBFlashType.Items" xml:space="preserve">
<value>반짝임</value>
</data>
<data name="cBFlashType.Items1" xml:space="preserve">
<value>펄스</value>
</data>
<data name="cBFlushHIDQueue.Text" xml:space="preserve">
<value>HID 초기화</value>
</data>
<data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>미사용시 연결해제</value>
</data>
<data name="cBLaunchProgram.Text" xml:space="preserve">
<value>프로파일과 함께 프로그램 실행</value>
</data>
<data name="cBLightbyBattery.Text" xml:space="preserve">
<value>색이 배터리%와 같이 변화</value>
</data>
<data name="cBlowerRCOn.Text" xml:space="preserve">
<value>우측 하단을 오른클릭으로 설정</value>
</data>
<data name="cBMouseAccel.Text" xml:space="preserve">
<value>마우스 가속</value>
</data>
<data name="cBScroll.Text" xml:space="preserve">
<value>스크롤</value>
</data>
<data name="cBSlide.Text" xml:space="preserve">
<value>슬라이드</value>
</data>
<data name="cbStartTouchpadOff.Text" xml:space="preserve">
<value>슬라이드/스크롤이 꺼진 상태로 시작</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>탭</value>
</data>
<data name="cBTouchpadJitterCompensation.Text" xml:space="preserve">
<value>지터 보조</value>
</data>
<data name="cBWhileCharging.Items" xml:space="preserve">
<value>기본</value>
</data>
<data name="cBWhileCharging.Items1" xml:space="preserve">
<value>펄스</value>
</data>
<data name="cBWhileCharging.Items2" xml:space="preserve">
<value>레인보우</value>
</data>
<data name="cBWhileCharging.Items3" xml:space="preserve">
<value>색</value>
</data>
<data name="cHAction.Text" xml:space="preserve">
<value>동작</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>이름</value>
</data>
<data name="cHTrigger.Text" xml:space="preserve">
<value>트리거</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>기본값</value>
</data>
<data name="DpadToolStripMenuItem.Text" xml:space="preserve">
<value>방향 버튼</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>한 손가락을 터치패드에 놓기</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>두 손가락을 터치패드에 놓기</value>
</data>
<data name="gBLightbar.Text" xml:space="preserve">
<value>라이트 바</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>기타</value>
</data>
<data name="gBRumble.Text" xml:space="preserve">
<value>진동</value>
</data>
<data name="gBSensitivity,Text" xml:space="preserve">
<value>감도</value>
</data>
<data name="gBTouchpad.Text" xml:space="preserve">
<value>터치패드</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>가속도</value>
</data>
<data name="lb6Gryo.Text" xml:space="preserve">
<value>자이로</value>
</data>
<data name="lbActionsTip.Text" xml:space="preserve">
<value>선택된 컨트롤로 동작을 수행합니다, 프로파일이 로드 돼었을 때의 동작을 체크해주세요.</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>B</value>
</data>
<data name="lbButtonMouseSens.Text" xml:space="preserve">
<value>마우스 감도:</value>
</data>
<data name="lbControlTip.Text" xml:space="preserve">
<value>라이트 바를 클릭하여 색 편집기로</value>
</data>
<data name="lbEmpty.Text" xml:space="preserve">
<value>없음:</value>
</data>
<data name="lbFull.Text" xml:space="preserve">
<value>꽉참:</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>G</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>반전:</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>자이로 감도:</value>
</data>
<data name="lbGyroTriggers.Text" xml:space="preserve">
<value>트리거:</value>
</data>
<data name="lbIdleMinutes.Text" xml:space="preserve">
<value>분</value>
</data>
<data name="lbInputDelay.Text" xml:space="preserve">
<value>입력 지연: N/Ams</value>
</data>
<data name="lbLowBlue.Text" xml:space="preserve">
<value>B</value>
</data>
<data name="lbLowGreen.Text" xml:space="preserve">
<value>G</value>
</data>
<data name="lbLowRed.Text" xml:space="preserve">
<value>R</value>
</data>
<data name="lbLSTip.Text" xml:space="preserve">
<value>왼쪽 스틱</value>
</data>
<data name="lbRed.Text" xml:space="preserve">
<value>R</value>
</data>
<data name="lbRSTip.Text" xml:space="preserve">
<value>오른쪽 스틱</value>
</data>
<data name="lbSATip.Text" xml:space="preserve">
<value>육축: X축은 읽기 편의를 위해 반전 되었습니다</value>
</data>
<data name="lbspc.Text" xml:space="preserve">
<value>초/반복</value>
</data>
<data name="lbUseController.Text" xml:space="preserve">
<value>컨트롤러 사용</value>
</data>
<data name="lbWhileCharging.Text" xml:space="preserve">
<value>충전중일시:</value>
</data>
<data name="LSToolStripMenuItem.Text" xml:space="preserve">
<value>왼쪽 스틱</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>마우스</value>
</data>
<data name="rBSAControls.Text" xml:space="preserve">
<value>컨트롤러로 사용</value>
</data>
<data name="rBSAMouse.Text" xml:space="preserve">
<value>마우스로 사용</value>
</data>
<data name="resetToolStripMenuItem.Text" xml:space="preserve">
<value>리셋</value>
</data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>오른쪽 스틱</value>
</data>
<data name="tPController.Text" xml:space="preserve">
<value>컨트롤러 수치:</value>
</data>
<data name="tPControls.Text" xml:space="preserve">
<value>컨트롤</value>
</data>
<data name="tPCurve.Text" xml:space="preserve">
<value>커브</value>
</data>
<data name="tPDeadzone.Text" xml:space="preserve">
<value>데드존</value>
</data>
<data name="tPSpecial.Text" xml:space="preserve">
<value>특수 동작</value>
</data>
<data name="tSMIDPadInverted.Text" xml:space="preserve">
<value>반전</value>
</data>
<data name="tSMIDPadInvertedX.Text" xml:space="preserve">
<value>X축 반전</value>
</data>
<data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>Y축 반전</value>
</data>
<data name="tSMILSInverted.Text" xml:space="preserve">
<value>반전</value>
</data>
<data name="tSMILSInvertedX.Text" xml:space="preserve">
<value>X축 반전</value>
</data>
<data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>Y축 반전</value>
</data>
<data name="tSMIMouseInverted.Text" xml:space="preserve">
<value>반전</value>
</data>
<data name="tSMIMouseInvertedX.Text" xml:space="preserve">
<value>X축 반전</value>
</data>
<data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>Y축 반전</value>
</data>
<data name="tSMIRSInverted.Text" xml:space="preserve">
<value>반전</value>
</data>
<data name="tSMIRSInvertedX.Text" xml:space="preserve">
<value>X축 반전</value>
</data>
<data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>Y축 반전</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>w/ 코드 스캔</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>w/ 코드 스캔</value>
</data>
</root>

View File

@ -244,7 +244,7 @@
<value>Gyro</value> <value>Gyro</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Hou de geselecteerde besturing om een actie uit te voeren, controlleer de actie om het te gebruiken als het profiel geladen is. Max 50 acties</value> <value>Hou de geselecteerde besturing om een actie uit te voeren, controlleer de actie om het te gebruiken als het profiel geladen is.</value>
</data> </data>
<data name="lbBlue.Text" xml:space="preserve"> <data name="lbBlue.Text" xml:space="preserve">
<value>B</value> <value>B</value>

View File

@ -558,7 +558,7 @@
<value>Remover Ação</value> <value>Remover Ação</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Segure controles selecionados para executar uma ação, verificar a ação de usá-lo, enquanto o perfil é carregado. Max 50 ações</value> <value>Segure controles selecionados para executar uma ação, verificar a ação de usá-lo, enquanto o perfil é carregado.</value>
</data> </data>
<data name="tPDeadzone.Text" xml:space="preserve"> <data name="tPDeadzone.Text" xml:space="preserve">
<value>Zona Morta</value> <value>Zona Morta</value>

File diff suppressed because it is too large Load Diff

View File

@ -554,7 +554,7 @@
<value>Удалить экшн</value> <value>Удалить экшн</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Удерживайте выбранные кнопки для назначения нужного действия, проверьте работоспособность при загруженном профиле. Предел 50 действий.</value> <value>Удерживайте выбранные кнопки для назначения нужного действия, проверьте работоспособность при загруженном профиле.</value>
</data> </data>
<data name="tPSpecial.Text" xml:space="preserve"> <data name="tPSpecial.Text" xml:space="preserve">
<value>Удалить экшн</value> <value>Удалить экшн</value>

View File

@ -0,0 +1,662 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBLightbyBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>222, 21</value>
</data>
<data name="cBLightbyBattery.Text" xml:space="preserve">
<value>Barva napolnjenosti baterije %</value>
</data>
<data name="lbBlue.Size" type="System.Drawing.Size, System.Drawing">
<value>19, 17</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>M</value>
</data>
<data name="lbGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>17, 17</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>Z</value>
</data>
<data name="lbspc.Size" type="System.Drawing.Size, System.Drawing">
<value>67, 17</value>
</data>
<data name="lbspc.Text" xml:space="preserve">
<value>sek/obrat</value>
</data>
<data name="cBDoubleTap.Location" type="System.Drawing.Point, System.Drawing">
<value>155, 48</value>
</data>
<data name="cBDoubleTap.Size" type="System.Drawing.Size, System.Drawing">
<value>93, 21</value>
</data>
<data name="cBDoubleTap.Text" xml:space="preserve">
<value>Dvojni klik</value>
</data>
<data name="cBTap.Size" type="System.Drawing.Size, System.Drawing">
<value>72, 21</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>Pritisni</value>
</data>
<data name="nUDTap.Location" type="System.Drawing.Point, System.Drawing">
<value>98, 48</value>
</data>
<data name="cBScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>154, 11</value>
</data>
<data name="cBScroll.Size" type="System.Drawing.Size, System.Drawing">
<value>95, 21</value>
</data>
<data name="cBScroll.Text" xml:space="preserve">
<value>Pomikanje</value>
</data>
<data name="cBSlide.Size" type="System.Drawing.Size, System.Drawing">
<value>79, 21</value>
</data>
<data name="cBSlide.Text" xml:space="preserve">
<value>Drsanje</value>
</data>
<data name="nUDScroll.Location" type="System.Drawing.Point, System.Drawing">
<value>228, 10</value>
</data>
<data name="nUDTouch.Location" type="System.Drawing.Point, System.Drawing">
<value>98, 10</value>
</data>
<data name="lbButtonMouseSens.Text" xml:space="preserve">
<value>Občutljivost miške</value>
</data>
<data name="cBlowerRCOn.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 21</value>
</data>
<data name="cBlowerRCOn.Text" xml:space="preserve">
<value>Nizko desno, kot desna miška</value>
</data>
<data name="cBTouchpadJitterCompensation.Size" type="System.Drawing.Size, System.Drawing">
<value>182, 21</value>
</data>
<data name="cBTouchpadJitterCompensation.Text" xml:space="preserve">
<value>Uravnoteženje treptanja</value>
</data>
<data name="lbIdleMinutes.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 17</value>
</data>
<data name="lbIdleMinutes.Text" xml:space="preserve">
<value>minut</value>
</data>
<data name="cBFlushHIDQueue.Size" type="System.Drawing.Size, System.Drawing">
<value>103, 21</value>
</data>
<data name="cBFlushHIDQueue.Text" xml:space="preserve">
<value>Prečisti HID</value>
</data>
<data name="btnRumbleHeavyTest.Location" type="System.Drawing.Point, System.Drawing">
<value>85, 20</value>
</data>
<data name="btnRumbleHeavyTest.Size" type="System.Drawing.Size, System.Drawing">
<value>123, 29</value>
</data>
<data name="btnRumbleHeavyTest.Text" xml:space="preserve">
<value>Preizkusi močno</value>
</data>
<data name="lbFull.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 17</value>
</data>
<data name="lbFull.Text" xml:space="preserve">
<value>Polno:</value>
</data>
<data name="lbLowGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>17, 17</value>
</data>
<data name="lbLowGreen.Text" xml:space="preserve">
<value>Z</value>
</data>
<data name="lbLowBlue.Size" type="System.Drawing.Size, System.Drawing">
<value>19, 17</value>
</data>
<data name="lbLowBlue.Text" xml:space="preserve">
<value>M</value>
</data>
<data name="lbEmpty.Size" type="System.Drawing.Size, System.Drawing">
<value>57, 17</value>
</data>
<data name="lbEmpty.Text" xml:space="preserve">
<value>Prazno:</value>
</data>
<data name="cbStartTouchpadOff.Size" type="System.Drawing.Size, System.Drawing">
<value>286, 21</value>
</data>
<data name="cbStartTouchpadOff.Text" xml:space="preserve">
<value>Začni z Drsanjem/Pomikanjem izključeno</value>
</data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 244</value>
</data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>137, 6</value>
</data>
<data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>Privzeto</value>
</data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIDPadInverted.Text" xml:space="preserve">
<value>Nasprotno</value>
</data>
<data name="tSMIDPadInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIDPadInvertedX.Text" xml:space="preserve">
<value>Nasprotno X</value>
</data>
<data name="tSMIDPadInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>Nasprotno Y</value>
</data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="LSToolStripMenuItem.Text" xml:space="preserve">
<value>Leva ročica</value>
</data>
<data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMILSInverted.Text" xml:space="preserve">
<value>Nasprotno</value>
</data>
<data name="tSMILSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMILSInvertedX.Text" xml:space="preserve">
<value>Nasprotno X</value>
</data>
<data name="tSMILSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>Nasprotno Y</value>
</data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>Desna ročica</value>
</data>
<data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIRSInverted.Text" xml:space="preserve">
<value>Nasprotno</value>
</data>
<data name="tSMIRSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIRSInvertedX.Text" xml:space="preserve">
<value>Nasprotno X</value>
</data>
<data name="tSMIRSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>Nasprotno Y</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>189, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Preglej kodo</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Smerne tipke</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>189, 26</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Preglej kodo</value>
</data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>140, 26</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>Miška</value>
</data>
<data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIMouseInverted.Text" xml:space="preserve">
<value>Nasprotno</value>
</data>
<data name="tSMIMouseInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIMouseInvertedX.Text" xml:space="preserve">
<value>Nasprotno X</value>
</data>
<data name="tSMIMouseInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 26</value>
</data>
<data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>Nasprotno Y</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>Ostalo</value>
</data>
<data name="cBDinput.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 21</value>
</data>
<data name="cBDinput.Text" xml:space="preserve">
<value>Uporabi samo Dinput</value>
</data>
<data name="pBProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>304, 136</value>
</data>
<data name="cBLaunchProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 143</value>
</data>
<data name="cBLaunchProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>200, 21</value>
</data>
<data name="cBLaunchProgram.Text" xml:space="preserve">
<value>Zaženi program z računom</value>
</data>
<data name="btnBrowse.Location" type="System.Drawing.Point, System.Drawing">
<value>214, 138</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>Brskanje...</value>
</data>
<data name="lbUseController.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 97</value>
</data>
<data name="lbUseController.Size" type="System.Drawing.Size, System.Drawing">
<value>111, 17</value>
</data>
<data name="lbUseController.Text" xml:space="preserve">
<value>Uporabi Krmilnik</value>
</data>
<data name="cBMouseAccel.Location" type="System.Drawing.Point, System.Drawing">
<value>205, 21</value>
</data>
<data name="cBMouseAccel.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 21</value>
</data>
<data name="cBMouseAccel.Text" xml:space="preserve">
<value>Pospešek miške</value>
</data>
<data name="nUDSixaxis.Location" type="System.Drawing.Point, System.Drawing">
<value>123, 95</value>
</data>
<data name="cBControllerInput.Location" type="System.Drawing.Point, System.Drawing">
<value>167, 88</value>
</data>
<data name="cBControllerInput.Size" type="System.Drawing.Size, System.Drawing">
<value>133, 38</value>
</data>
<data name="cBControllerInput.Text" xml:space="preserve">
<value>za označevanje
in prikaz</value>
</data>
<data name="cBIdleDisconnect.Size" type="System.Drawing.Size, System.Drawing">
<value>151, 21</value>
</data>
<data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>Odklop v mirovanju</value>
</data>
<data name="gBLightbar.Text" xml:space="preserve">
<value>Luč</value>
</data>
<data name="cBFlashType.Items" xml:space="preserve">
<value>Osvetli</value>
</data>
<data name="cBFlashType.Items1" xml:space="preserve">
<value>Ožarči</value>
</data>
<data name="cBWhileCharging.Items" xml:space="preserve">
<value>Navadno</value>
</data>
<data name="cBWhileCharging.Items1" xml:space="preserve">
<value>Utrip</value>
</data>
<data name="cBWhileCharging.Items2" xml:space="preserve">
<value>Mavrica</value>
</data>
<data name="cBWhileCharging.Items3" xml:space="preserve">
<value>Barva</value>
</data>
<data name="lbWhileCharging.Size" type="System.Drawing.Size, System.Drawing">
<value>107, 17</value>
</data>
<data name="lbWhileCharging.Text" xml:space="preserve">
<value>med polnjenjem</value>
</data>
<data name="gBRumble.Text" xml:space="preserve">
<value>Brundanje</value>
</data>
<data name="btnRumbleLightTest.Location" type="System.Drawing.Point, System.Drawing">
<value>209, 20</value>
</data>
<data name="btnRumbleLightTest.Size" type="System.Drawing.Size, System.Drawing">
<value>123, 29</value>
</data>
<data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>Preizkusi lahko</value>
</data>
<data name="lbRSTip.Text" xml:space="preserve">
<value>Desna roćica</value>
</data>
<data name="lbInputDelay.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 17</value>
</data>
<data name="lbInputDelay.Text" xml:space="preserve">
<value>Vhodni zamik: N/Ams</value>
</data>
<data name="lbLSTip.Text" xml:space="preserve">
<value>Leva ročica</value>
</data>
<data name="lbSATip.Text" xml:space="preserve">
<value>Os: X os je obrnjena za lažje branje</value>
</data>
<data name="lb6Accel.Location" type="System.Drawing.Point, System.Drawing">
<value>64, 127</value>
</data>
<data name="lb6Accel.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 17</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>Akcelometer</value>
</data>
<data name="lb6Gryo.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 5</value>
</data>
<data name="lb6Gryo.Size" type="System.Drawing.Size, System.Drawing">
<value>63, 17</value>
</data>
<data name="lb6Gryo.Text" xml:space="preserve">
<value>Žiroskop</value>
</data>
<data name="tPControls.Text" xml:space="preserve">
<value>Kontrole</value>
</data>
<data name="lbControlTip.Text" xml:space="preserve">
<value>Pritisni na osvetljeno tipko za izbiro barve</value>
</data>
<data name="tPSpecial.Text" xml:space="preserve">
<value>Posebna dejanja</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>Ime</value>
</data>
<data name="cHTrigger.Text" xml:space="preserve">
<value>Sprožilec</value>
</data>
<data name="cHAction.Text" xml:space="preserve">
<value>Dejanje</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>Nov ukaz</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>Uredi ukaz</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>Odstrani ukaz</value>
</data>
<data name="lbActionsTip.Text" xml:space="preserve">
<value>Drži označene gumbe za izvedbo dejanja; preveri ukaz dejanja med tem, ko je račun aktiven.</value>
</data>
<data name="tPDeadzone.Text" xml:space="preserve">
<value>Območje odstopanja</value>
</data>
<data name="tPCurve.Text" xml:space="preserve">
<value>Krivulja</value>
</data>
<data name="rBSAControls.Size" type="System.Drawing.Size, System.Drawing">
<value>158, 21</value>
</data>
<data name="rBSAControls.Text" xml:space="preserve">
<value>Uporaba za kontrole</value>
</data>
<data name="rBSAMouse.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 21</value>
</data>
<data name="rBSAMouse.Text" xml:space="preserve">
<value>Uporabi, kot miško</value>
</data>
<data name="cBGyroInvertY.Location" type="System.Drawing.Point, System.Drawing">
<value>197, 96</value>
</data>
<data name="cBGyroInvertX.Location" type="System.Drawing.Point, System.Drawing">
<value>143, 96</value>
</data>
<data name="lbGyroInvert.Size" type="System.Drawing.Size, System.Drawing">
<value>126, 17</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>Uporabi nasprotno</value>
</data>
<data name="lbGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>66, 17</value>
</data>
<data name="lbGyroTriggers.Text" xml:space="preserve">
<value>Sprožilec</value>
</data>
<data name="lbGyroSens.Size" type="System.Drawing.Size, System.Drawing">
<value>146, 17</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>Občutljivost žiroskopa</value>
</data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>233, 524</value>
</data>
<data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="circleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="squareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="triangleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="l1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="l2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="r1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="r2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="onTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="downToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="leftToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="rightToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="l3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="r3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Prst na Touchpad-u</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>2 prsta na Touchpad-u</value>
</data>
<data name="optionsToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="shareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="pSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>Vedno vključeno</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -563,7 +563,7 @@
<value>Eylemi Sil</value> <value>Eylemi Sil</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Bir eylemi gerçekleştirmek için seçili kontrol cihazlarını basılı tutunuz, eylemi profil yüklenirken kontrol edin. En fazla 50</value> <value>Bir eylemi gerçekleştirmek için seçili kontrol cihazlarını basılı tutunuz, eylemi profil yüklenirken kontrol edin.</value>
</data> </data>
<data name="tPSpecial.Text" xml:space="preserve"> <data name="tPSpecial.Text" xml:space="preserve">
<value>Özel Eylemler</value> <value>Özel Eylemler</value>

View File

@ -0,0 +1,668 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBLightbyBattery.Size" type="System.Drawing.Size, System.Drawing">
<value>192, 21</value>
</data>
<data name="cBLightbyBattery.Text" xml:space="preserve">
<value>Колір від заряду батареї</value>
</data>
<data name="lbBlue.Text" xml:space="preserve">
<value>С</value>
</data>
<data name="lbGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>17, 17</value>
</data>
<data name="lbGreen.Text" xml:space="preserve">
<value>З</value>
</data>
<data name="lbspc.Size" type="System.Drawing.Size, System.Drawing">
<value>104, 17</value>
</data>
<data name="lbspc.Text" xml:space="preserve">
<value>секунди/цикли</value>
</data>
<data name="lbRed.Text" xml:space="preserve">
<value>Ч</value>
</data>
<data name="cBDoubleTap.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 21</value>
</data>
<data name="cBDoubleTap.Text" xml:space="preserve">
<value>Подвійний стук</value>
</data>
<data name="cBTap.Size" type="System.Drawing.Size, System.Drawing">
<value>60, 21</value>
</data>
<data name="cBTap.Text" xml:space="preserve">
<value>Стук</value>
</data>
<data name="cBScroll.Size" type="System.Drawing.Size, System.Drawing">
<value>93, 21</value>
</data>
<data name="cBScroll.Text" xml:space="preserve">
<value>Гортання</value>
</data>
<data name="cBSlide.Size" type="System.Drawing.Size, System.Drawing">
<value>71, 21</value>
</data>
<data name="cBSlide.Text" xml:space="preserve">
<value>Слайд</value>
</data>
<data name="lbButtonMouseSens.Size" type="System.Drawing.Size, System.Drawing">
<value>118, 17</value>
</data>
<data name="lbButtonMouseSens.Text" xml:space="preserve">
<value>Чутливість миші:</value>
</data>
<data name="cBlowerRCOn.Size" type="System.Drawing.Size, System.Drawing">
<value>159, 21</value>
</data>
<data name="cBlowerRCOn.Text" xml:space="preserve">
<value>Правий низ як ПКМ</value>
</data>
<data name="cBTouchpadJitterCompensation.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 21</value>
</data>
<data name="cBTouchpadJitterCompensation.Text" xml:space="preserve">
<value>Комперсація тремтіння</value>
</data>
<data name="lbIdleMinutes.Size" type="System.Drawing.Size, System.Drawing">
<value>21, 17</value>
</data>
<data name="lbIdleMinutes.Text" xml:space="preserve">
<value>хв</value>
</data>
<data name="nUDIdleDisconnect.Location" type="System.Drawing.Point, System.Drawing">
<value>258, 55</value>
</data>
<data name="cBFlushHIDQueue.Size" type="System.Drawing.Size, System.Drawing">
<value>118, 21</value>
</data>
<data name="cBFlushHIDQueue.Text" xml:space="preserve">
<value>Очищати HID</value>
</data>
<data name="btnRumbleHeavyTest.Location" type="System.Drawing.Point, System.Drawing">
<value>96, 9</value>
</data>
<data name="btnRumbleHeavyTest.Size" type="System.Drawing.Size, System.Drawing">
<value>89, 48</value>
</data>
<data name="btnRumbleHeavyTest.Text" xml:space="preserve">
<value>Сильний Тест</value>
</data>
<data name="lbFull.Size" type="System.Drawing.Size, System.Drawing">
<value>61, 17</value>
</data>
<data name="lbFull.Text" xml:space="preserve">
<value>Повний:</value>
</data>
<data name="lbLowRed.Text" xml:space="preserve">
<value>Ч</value>
</data>
<data name="lbLowGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>17, 17</value>
</data>
<data name="lbLowGreen.Text" xml:space="preserve">
<value>З</value>
</data>
<data name="lbLowBlue.Text" xml:space="preserve">
<value>С</value>
</data>
<data name="lbEmpty.Size" type="System.Drawing.Size, System.Drawing">
<value>59, 17</value>
</data>
<data name="lbEmpty.Text" xml:space="preserve">
<value>Пустий:</value>
</data>
<data name="numUDMouseSens.Location" type="System.Drawing.Point, System.Drawing">
<value>124, 19</value>
</data>
<data name="gBTouchpad.Text" xml:space="preserve">
<value>Тачпад</value>
</data>
<data name="cMSPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>195, 244</value>
</data>
<data name="controlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>191, 6</value>
</data>
<data name="defaultToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="defaultToolStripMenuItem.Text" xml:space="preserve">
<value>Стандартно</value>
</data>
<data name="DpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="tSMIDPadInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIDPadInverted.Text" xml:space="preserve">
<value>Інвертовано</value>
</data>
<data name="tSMIDPadInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIDPadInvertedX.Text" xml:space="preserve">
<value>Інвертовано X</value>
</data>
<data name="tSMIDPadInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIDPadInvertedY.Text" xml:space="preserve">
<value>Інвертовано Y</value>
</data>
<data name="LSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="LSToolStripMenuItem.Text" xml:space="preserve">
<value>Лівий Стік</value>
</data>
<data name="tSMILSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMILSInverted.Text" xml:space="preserve">
<value>Інвертовано</value>
</data>
<data name="tSMILSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMILSInvertedX.Text" xml:space="preserve">
<value>Інвертовано X</value>
</data>
<data name="tSMILSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMILSInvertedY.Text" xml:space="preserve">
<value>Інвертовано Y</value>
</data>
<data name="RSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="RSToolStripMenuItem.Text" xml:space="preserve">
<value>Правий Стік</value>
</data>
<data name="tSMIRSInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIRSInverted.Text" xml:space="preserve">
<value>Інвертовано</value>
</data>
<data name="tSMIRSInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIRSInvertedX.Text" xml:space="preserve">
<value>Інвертовано X</value>
</data>
<data name="tSMIRSInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIRSInvertedY.Text" xml:space="preserve">
<value>Інвертовано Y</value>
</data>
<data name="ABXYToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="ABXYToolStripMenuItem.Text" xml:space="preserve">
<value>Лицьові кнопки</value>
</data>
<data name="WASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="wScanCodeWASDToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Сканувати код</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="ArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>Клавіші зі стрілками</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>204, 26</value>
</data>
<data name="wScanCodeArrowKeysToolStripMenuItem.Text" xml:space="preserve">
<value>w/ Сканувати код</value>
</data>
<data name="MouseToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>194, 26</value>
</data>
<data name="MouseToolStripMenuItem.Text" xml:space="preserve">
<value>Миша</value>
</data>
<data name="tSMIMouseInverted.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIMouseInverted.Text" xml:space="preserve">
<value>Інвертовано</value>
</data>
<data name="tSMIMouseInvertedX.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIMouseInvertedX.Text" xml:space="preserve">
<value>Інвертовано X</value>
</data>
<data name="tSMIMouseInvertedY.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 26</value>
</data>
<data name="tSMIMouseInvertedY.Text" xml:space="preserve">
<value>Інвертовано Y</value>
</data>
<data name="cBDinput.Size" type="System.Drawing.Size, System.Drawing">
<value>233, 21</value>
</data>
<data name="cBDinput.Text" xml:space="preserve">
<value>Використовувати тільки Dinput</value>
</data>
<data name="pBProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>273, 133</value>
</data>
<data name="cBLaunchProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>168, 38</value>
</data>
<data name="cBLaunchProgram.Text" xml:space="preserve">
<value>Запускати програму
з профілем</value>
</data>
<data name="btnBrowse.Location" type="System.Drawing.Point, System.Drawing">
<value>183, 135</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>Огляд...</value>
</data>
<data name="lbUseController.Location" type="System.Drawing.Point, System.Drawing">
<value>12, 89</value>
</data>
<data name="lbUseController.Size" type="System.Drawing.Size, System.Drawing">
<value>126, 34</value>
</data>
<data name="lbUseController.Text" xml:space="preserve">
<value>Використовувати
контролер</value>
</data>
<data name="cBMouseAccel.Location" type="System.Drawing.Point, System.Drawing">
<value>190, 19</value>
</data>
<data name="cBMouseAccel.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 21</value>
</data>
<data name="cBMouseAccel.Text" xml:space="preserve">
<value>Прискорення миші</value>
</data>
<data name="nUDSixaxis.Location" type="System.Drawing.Point, System.Drawing">
<value>146, 92</value>
</data>
<data name="cBControllerInput.Location" type="System.Drawing.Point, System.Drawing">
<value>190, 77</value>
</data>
<data name="cBControllerInput.Size" type="System.Drawing.Size, System.Drawing">
<value>149, 55</value>
</data>
<data name="cBControllerInput.Text" xml:space="preserve">
<value>для призначення
клавіш та
зчитування</value>
</data>
<data name="cBIdleDisconnect.Size" type="System.Drawing.Size, System.Drawing">
<value>239, 21</value>
</data>
<data name="cBIdleDisconnect.Text" xml:space="preserve">
<value>Відключення за байдикуванння</value>
</data>
<data name="gBOther.Text" xml:space="preserve">
<value>Інше</value>
</data>
<data name="lbRainbowB.Location" type="System.Drawing.Point, System.Drawing">
<value>267, 271</value>
</data>
<data name="nUDRainbowB.Location" type="System.Drawing.Point, System.Drawing">
<value>202, 271</value>
</data>
<data name="cBFlashType.Items" xml:space="preserve">
<value>Мерехтіння</value>
</data>
<data name="cBFlashType.Items1" xml:space="preserve">
<value>Пульс</value>
</data>
<data name="cBWhileCharging.Items" xml:space="preserve">
<value>Звичайний</value>
</data>
<data name="cBWhileCharging.Items1" xml:space="preserve">
<value>Пульс</value>
</data>
<data name="cBWhileCharging.Items2" xml:space="preserve">
<value>Веселка</value>
</data>
<data name="cBWhileCharging.Items3" xml:space="preserve">
<value>Колір</value>
</data>
<data name="cBWhileCharging.Location" type="System.Drawing.Point, System.Drawing">
<value>155, 206</value>
</data>
<data name="btnChargingColor.Location" type="System.Drawing.Point, System.Drawing">
<value>313, 209</value>
</data>
<data name="lbWhileCharging.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 17</value>
</data>
<data name="lbWhileCharging.Text" xml:space="preserve">
<value>Коли заряджається:</value>
</data>
<data name="gBLightbar.Text" xml:space="preserve">
<value>Світлопанель</value>
</data>
<data name="gBRumble.Text" xml:space="preserve">
<value>Вібрація</value>
</data>
<data name="btnRumbleLightTest.Location" type="System.Drawing.Point, System.Drawing">
<value>196, 9</value>
</data>
<data name="btnRumbleLightTest.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 48</value>
</data>
<data name="btnRumbleLightTest.Text" xml:space="preserve">
<value>Слабкий Тест</value>
</data>
<data name="lbRSTip.Text" xml:space="preserve">
<value>Правий стік</value>
</data>
<data name="lbInputDelay.Size" type="System.Drawing.Size, System.Drawing">
<value>187, 17</value>
</data>
<data name="lbInputDelay.Text" xml:space="preserve">
<value>Затримка введення: Н/Дмс</value>
</data>
<data name="lbLSTip.Text" xml:space="preserve">
<value>Лівий стік</value>
</data>
<data name="lbSATip.Text" xml:space="preserve">
<value>Sixaxis: вісь X перевернуто для спрощення зчитування</value>
</data>
<data name="lb6Accel.Location" type="System.Drawing.Point, System.Drawing">
<value>47, 127</value>
</data>
<data name="lb6Accel.Size" type="System.Drawing.Size, System.Drawing">
<value>103, 17</value>
</data>
<data name="lb6Accel.Text" xml:space="preserve">
<value>Акселерометр</value>
</data>
<data name="lb6Gryo.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 17</value>
</data>
<data name="lb6Gryo.Text" xml:space="preserve">
<value>Гіроскоп</value>
</data>
<data name="tPControls.Text" xml:space="preserve">
<value>Кнопки</value>
</data>
<data name="tPSpecial.Text" xml:space="preserve">
<value>Спаціальні дії</value>
</data>
<data name="lbControlTip.Text" xml:space="preserve">
<value>Клацніть світлопанель для вибору кольору</value>
</data>
<data name="cHName.Text" xml:space="preserve">
<value>Ім'я</value>
</data>
<data name="cHTrigger.Text" xml:space="preserve">
<value>Перемикач</value>
</data>
<data name="cHAction.Text" xml:space="preserve">
<value>Дія</value>
</data>
<data name="btnNewAction.Text" xml:space="preserve">
<value>Нова дія</value>
</data>
<data name="btnEditAction.Text" xml:space="preserve">
<value>Редагувати дію</value>
</data>
<data name="btnRemAction.Text" xml:space="preserve">
<value>Видалити дію</value>
</data>
<data name="lbActionsTip.Text" xml:space="preserve">
<value>Втримуйте обрані кнопки для здійснення дії, позначте Дію поки профіль завантажено.</value>
</data>
<data name="tPDeadzone.Text" xml:space="preserve">
<value>Мертва зона</value>
</data>
<data name="tPCurve.Text" xml:space="preserve">
<value>Крива</value>
</data>
<data name="rBSAControls.Size" type="System.Drawing.Size, System.Drawing">
<value>129, 21</value>
</data>
<data name="rBSAControls.Text" xml:space="preserve">
<value>Для керування</value>
</data>
<data name="rBSAMouse.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 21</value>
</data>
<data name="rBSAMouse.Text" xml:space="preserve">
<value>Як миша</value>
</data>
<data name="cBGyroInvertY.Location" type="System.Drawing.Point, System.Drawing">
<value>159, 93</value>
</data>
<data name="cBGyroInvertX.Location" type="System.Drawing.Point, System.Drawing">
<value>105, 93</value>
</data>
<data name="lbGyroInvert.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 17</value>
</data>
<data name="lbGyroInvert.Text" xml:space="preserve">
<value>Інвертувати:</value>
</data>
<data name="lbGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>89, 17</value>
</data>
<data name="lbGyroTriggers.Text" xml:space="preserve">
<value>Перемикачі:</value>
</data>
<data name="nUDGyroSensitivity.Location" type="System.Drawing.Point, System.Drawing">
<value>159, 55</value>
</data>
<data name="lbGyroSens.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 17</value>
</data>
<data name="lbGyroSens.Text" xml:space="preserve">
<value>Чутливість гіроскопу:</value>
</data>
<data name="cMGyroTriggers.Size" type="System.Drawing.Size, System.Drawing">
<value>219, 524</value>
</data>
<data name="crossToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="circleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="squareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="triangleToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="l1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="l2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="r1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="r2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="onTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="downToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="leftToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="rightToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="l3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="r3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="fingerOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>Палець на тачпаді</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="fingersOnTouchpadToolStripMenuItem.Text" xml:space="preserve">
<value>2 пальці на тачпаді</value>
</data>
<data name="optionsToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="shareToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="pSToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>218, 26</value>
</data>
<data name="alwaysOnToolStripMenuItem.Text" xml:space="preserve">
<value>Завжди увімкнено</value>
</data>
</root>

View File

@ -564,7 +564,7 @@
<value>Xóa lệnh</value> <value>Xóa lệnh</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>Giữ phím điều khiển để thực thi lênh, chọn lệnh để sử dụng khi profile được load. Tối đa 50 lệnh</value> <value>Giữ phím điều khiển để thực thi lênh, chọn lệnh để sử dụng khi profile được load.</value>
</data> </data>
<data name="tCSens.Location" type="System.Drawing.Point, System.Drawing"> <data name="tCSens.Location" type="System.Drawing.Point, System.Drawing">
<value>352, 97</value> <value>352, 97</value>

View File

@ -556,9 +556,6 @@
<data name="btnRemAction.Text" xml:space="preserve"> <data name="btnRemAction.Text" xml:space="preserve">
<value>删除动作</value> <value>删除动作</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve">
<value>...最多50个动作。</value>
</data>
<data name="tPSpecial.Text" xml:space="preserve"> <data name="tPSpecial.Text" xml:space="preserve">
<value>特殊动作</value> <value>特殊动作</value>
</data> </data>

View File

@ -591,7 +591,7 @@
<value>移除動作</value> <value>移除動作</value>
</data> </data>
<data name="lbActionsTip.Text" xml:space="preserve"> <data name="lbActionsTip.Text" xml:space="preserve">
<value>按住選擇的控制鍵來執行一個動作,檢查動作以便使用它,直到設定檔被載入。最大50個動作</value> <value>按住選擇的控制鍵來執行一個動作,檢查動作以便使用它,直到設定檔被載入。</value>
</data> </data>
<data name="tPDeadzone.Text" xml:space="preserve"> <data name="tPDeadzone.Text" xml:space="preserve">
<value>死區</value> <value>死區</value>

View File

@ -166,15 +166,15 @@
// //
// pBRtouch // pBRtouch
// //
this.pBRtouch.Image = global::DS4Windows.Properties.Resources.right_touch;
resources.ApplyResources(this.pBRtouch, "pBRtouch"); resources.ApplyResources(this.pBRtouch, "pBRtouch");
this.pBRtouch.Image = global::DS4Windows.Properties.Resources.right_touch;
this.pBRtouch.Name = "pBRtouch"; this.pBRtouch.Name = "pBRtouch";
this.pBRtouch.TabStop = false; this.pBRtouch.TabStop = false;
// //
// pBLtouch // pBLtouch
// //
this.pBLtouch.Image = global::DS4Windows.Properties.Resources.left_touch;
resources.ApplyResources(this.pBLtouch, "pBLtouch"); resources.ApplyResources(this.pBLtouch, "pBLtouch");
this.pBLtouch.Image = global::DS4Windows.Properties.Resources.left_touch;
this.pBLtouch.Name = "pBLtouch"; this.pBLtouch.Name = "pBLtouch";
this.pBLtouch.TabStop = false; this.pBLtouch.TabStop = false;
// //
@ -242,24 +242,24 @@
// //
// cMSLoadPresets // cMSLoadPresets
// //
resources.ApplyResources(this.cMSLoadPresets, "cMSLoadPresets");
this.cMSLoadPresets.ImageScalingSize = new System.Drawing.Size(20, 20); this.cMSLoadPresets.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cMSLoadPresets.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMSLoadPresets.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.altTabToolStripMenuItem, this.altTabToolStripMenuItem,
this.fromFileToolStripMenuItem}); this.fromFileToolStripMenuItem});
this.cMSLoadPresets.Name = "cMSLoadPresets"; this.cMSLoadPresets.Name = "cMSLoadPresets";
this.cMSLoadPresets.ShowImageMargin = false; this.cMSLoadPresets.ShowImageMargin = false;
resources.ApplyResources(this.cMSLoadPresets, "cMSLoadPresets");
// //
// altTabToolStripMenuItem // altTabToolStripMenuItem
// //
this.altTabToolStripMenuItem.Name = "altTabToolStripMenuItem";
resources.ApplyResources(this.altTabToolStripMenuItem, "altTabToolStripMenuItem"); resources.ApplyResources(this.altTabToolStripMenuItem, "altTabToolStripMenuItem");
this.altTabToolStripMenuItem.Name = "altTabToolStripMenuItem";
this.altTabToolStripMenuItem.Click += new System.EventHandler(this.altTabToolStripMenuItem_Click); this.altTabToolStripMenuItem.Click += new System.EventHandler(this.altTabToolStripMenuItem_Click);
// //
// fromFileToolStripMenuItem // fromFileToolStripMenuItem
// //
this.fromFileToolStripMenuItem.Name = "fromFileToolStripMenuItem";
resources.ApplyResources(this.fromFileToolStripMenuItem, "fromFileToolStripMenuItem"); resources.ApplyResources(this.fromFileToolStripMenuItem, "fromFileToolStripMenuItem");
this.fromFileToolStripMenuItem.Name = "fromFileToolStripMenuItem";
this.fromFileToolStripMenuItem.Click += new System.EventHandler(this.fromFileToolStripMenuItem_Click); this.fromFileToolStripMenuItem.Click += new System.EventHandler(this.fromFileToolStripMenuItem_Click);
// //
// RecordBox // RecordBox

View File

@ -23,6 +23,7 @@ namespace DS4Windows
public List<int> macros = new List<int>(), macrosAfter = new List<int>(); public List<int> macros = new List<int>(), macrosAfter = new List<int>();
public List<string> macronames = new List<string>(); public List<string> macronames = new List<string>();
SpecActions sA; SpecActions sA;
int sAButton = -1;
KBM360 kbm; KBM360 kbm;
DS4State cState; DS4State cState;
public bool saved = false; public bool saved = false;
@ -50,7 +51,7 @@ namespace DS4Windows
} }
} }
public RecordBox(SpecActions op) public RecordBox(SpecActions op, int button = -1)
{ {
sA = op; sA = op;
InitializeComponent(); InitializeComponent();
@ -59,12 +60,23 @@ namespace DS4Windows
else else
cBStyle.SelectedIndex = 0; cBStyle.SelectedIndex = 0;
AddtoDS4List(); AddtoDS4List();
if (button > -1)
sAButton = button;
ds4.Tick += ds4_Tick; ds4.Tick += ds4_Tick;
ds4.Interval = 1; ds4.Interval = 1;
lbRecordTip.Visible = false; lbRecordTip.Visible = false;
cBStyle.Visible = false; cBStyle.Visible = false;
pnlMouseButtons.Location = new Point(pnlMouseButtons.Location.X, pnlMouseButtons.Location.Y - 75); pnlMouseButtons.Location = new Point(pnlMouseButtons.Location.X, pnlMouseButtons.Location.Y - 75);
if (sA.macrostag.Count > 0) if (sAButton > -1)
{
if (sA.multiMacrostag[sAButton].Count > 0)
{
macros.AddRange(sA.multiMacrostag[sAButton]);
LoadMacro();
saved = true;
}
}
else if (sA.macrostag.Count > 0)
{ {
macros.AddRange(sA.macrostag); macros.AddRange(sA.macrostag);
LoadMacro(); LoadMacro();
@ -747,7 +759,19 @@ namespace DS4Windows
public void btnSave_Click(object sender, EventArgs e) public void btnSave_Click(object sender, EventArgs e)
{ {
if (macros.Count > 0) if (sA != null && sAButton > -1)
{
sA.multiMacrostag[sAButton] = macros;
switch (sAButton)
{
case 0: sA.btnSTapT.Text = macros.Count > 0 ? Properties.Resources.MacroRecorded : Properties.Resources.SelectMacro; break;
case 1: sA.btnHoldT.Text = macros.Count > 0 ? Properties.Resources.MacroRecorded : Properties.Resources.SelectMacro; break;
case 2: sA.btnDTapT.Text = macros.Count > 0 ? Properties.Resources.MacroRecorded : Properties.Resources.SelectMacro; break;
}
saved = true;
Close();
}
else if (macros.Count > 0)
{ {
macronames.Clear(); macronames.Clear();
foreach (ListViewItem lvi in lVMacros.Items) foreach (ListViewItem lvi in lVMacros.Items)

View File

@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnRecord.Text" xml:space="preserve">
<value>Zaznamenat</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBRecordDelays.Location" type="System.Drawing.Point, System.Drawing">
<value>749, 149</value>
</data>
<data name="cBRecordDelays.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 21</value>
</data>
<data name="cBRecordDelays.Text" xml:space="preserve">
<value>Zaznamenat prodlevy</value>
</data>
<data name="iLKeys.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAbABAQGwAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/
Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA
AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0
Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8
FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA
Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA
ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0
Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/
CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6
AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA
A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw==
</value>
</data>
<data name="cBStyle.Items" xml:space="preserve">
<value>Přehrát jednou</value>
</data>
<data name="cBStyle.Items1" xml:space="preserve">
<value>Opakovat při držení</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Uložit</value>
</data>
<data name="btnCancel.Text" xml:space="preserve">
<value>Zrušit</value>
</data>
<data name="btnSaveP.Text" xml:space="preserve">
<value>Uložit předvolbu</value>
</data>
<data name="lbRecordTip.Size" type="System.Drawing.Size, System.Drawing">
<value>307, 17</value>
</data>
<data name="lbRecordTip.Text" xml:space="preserve">
<value>Použít klávesnici/myš + ovladač č.1 pro záznam</value>
</data>
<data name="btn5th.Text" xml:space="preserve">
<value>5. tlačítko myši</value>
</data>
<data name="btn4th.Text" xml:space="preserve">
<value>4. tlačítko myši</value>
</data>
<data name="btnLoadP.Text" xml:space="preserve">
<value>Načíst předvolbu</value>
</data>
<data name="lbMacroOrder.Size" type="System.Drawing.Size, System.Drawing">
<value>92, 17</value>
</data>
<data name="lbMacroOrder.Text" xml:space="preserve">
<value>Podaří makra</value>
</data>
<data name="lbDelayTip.Text" xml:space="preserve">
<value>Dvojklik na tlačítko "počkat" pro změnu času</value>
</data>
<data name="altTabToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 26</value>
</data>
<data name="altTabToolStripMenuItem.Text" xml:space="preserve">
<value>Měnit programy</value>
</data>
<data name="altTabToolStripMenuItem.ToolTipText" xml:space="preserve">
<value>Upravit dobu čekání na změnu</value>
</data>
<data name="fromFileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 26</value>
</data>
<data name="fromFileToolStripMenuItem.Text" xml:space="preserve">
<value>Načíst ze souboru...</value>
</data>
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>181, 56</value>
</data>
</root>

View File

@ -0,0 +1,214 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnRecord.Text" xml:space="preserve">
<value>Εγγραφή</value>
</data>
<data name="iLKeys.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAbwBAQG8AQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/
Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA
AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0
Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8
FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA
Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA
ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0
Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/
CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6
AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA
A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw==
</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Αποθήκευση</value>
</data>
<data name="btnCancel.Text" xml:space="preserve">
<value>Ακύρωση</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lbRecordTip.Location" type="System.Drawing.Point, System.Drawing">
<value>289, 9</value>
</data>
<data name="lbRecordTip.Size" type="System.Drawing.Size, System.Drawing">
<value>416, 17</value>
</data>
<data name="lbRecordTip.Text" xml:space="preserve">
<value>Χρησιμοποίησε Πληκρολόγιο/Ποντίκι + Χειριστήριο 1 για εγγραφή</value>
</data>
<data name="btnLightbar.Text" xml:space="preserve">
<value>Αλλαγή Χρώματος Μπάρας</value>
</data>
<data name="lbMacroOrder.Size" type="System.Drawing.Size, System.Drawing">
<value>141, 17</value>
</data>
<data name="lbMacroOrder.Text" xml:space="preserve">
<value>Σειρά Μακροεντολών</value>
</data>
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>253, 56</value>
</data>
<data name="altTabToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>252, 26</value>
</data>
<data name="altTabToolStripMenuItem.Text" xml:space="preserve">
<value>Επανάληψη Προγραμμάτων?</value>
</data>
<data name="fromFileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>252, 26</value>
</data>
<data name="fromFileToolStripMenuItem.Text" xml:space="preserve">
<value>Από αρχείο...</value>
</data>
</root>

View File

@ -0,0 +1,250 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnRecord.Text" xml:space="preserve">
<value>Nauhoita</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBRecordDelays.Location" type="System.Drawing.Point, System.Drawing">
<value>749, 149</value>
</data>
<data name="cBRecordDelays.Size" type="System.Drawing.Size, System.Drawing">
<value>167, 21</value>
</data>
<data name="cBRecordDelays.Text" xml:space="preserve">
<value>Nauhoita tauot/viiveet</value>
</data>
<data name="iLKeys.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAbQBAQG0AQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/
Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA
AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0
Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8
FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA
Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA
ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0
Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/
CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6
AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA
A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw==
</value>
</data>
<data name="cBStyle.Items" xml:space="preserve">
<value>Aja kerran</value>
</data>
<data name="cBStyle.Items1" xml:space="preserve">
<value>Aja kun näppäin on pohjassa</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Tallenna</value>
</data>
<data name="btnCancel.Text" xml:space="preserve">
<value>Peruuta</value>
</data>
<data name="btnSaveP.Text" xml:space="preserve">
<value>Tallenna asetus</value>
</data>
<data name="lbRecordTip.Location" type="System.Drawing.Point, System.Drawing">
<value>350, 8</value>
</data>
<data name="lbRecordTip.Size" type="System.Drawing.Size, System.Drawing">
<value>355, 17</value>
</data>
<data name="lbRecordTip.Text" xml:space="preserve">
<value>Käytä näppäimistöä/hiirtä ja 1. Ohjainta nauhottaaksesi</value>
</data>
<data name="btnLightbar.Text" xml:space="preserve">
<value>Vaihda valopalkin väriä</value>
</data>
<data name="btnRumble.Text" xml:space="preserve">
<value>Lisää värinä</value>
</data>
<data name="btn5th.Text" xml:space="preserve">
<value>Hiiren 5. näppäin</value>
</data>
<data name="btn4th.Text" xml:space="preserve">
<value>Hiiren 4. näppäin</value>
</data>
<data name="btnLoadP.Text" xml:space="preserve">
<value>Lataa asetus</value>
</data>
<data name="lbMacroOrder.Size" type="System.Drawing.Size, System.Drawing">
<value>122, 17</value>
</data>
<data name="lbMacroOrder.Text" xml:space="preserve">
<value>Macrojen järjestys</value>
</data>
<data name="lbDelayTip.Text" xml:space="preserve">
<value>Tuplaklikkaa taukoa muokataksesi aikaa</value>
</data>
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>184, 56</value>
</data>
<data name="altTabToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>183, 26</value>
</data>
<data name="altTabToolStripMenuItem.Text" xml:space="preserve">
<value>Valitse toiminnoista</value>
</data>
<data name="altTabToolStripMenuItem.ToolTipText" xml:space="preserve">
<value>Muokkaa Tauko-toimintoa säätääksesi syklin nopeutta</value>
</data>
<data name="fromFileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>183, 26</value>
</data>
<data name="fromFileToolStripMenuItem.Text" xml:space="preserve">
<value>Tiedostosta...</value>
</data>
</root>

View File

@ -135,7 +135,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAZQBAQGYAQEBEAEAARABAAT/AQkBEAj/AUIBTQE2AQQGAAE2AQQCAAEo CgAAAk1TRnQBSQFMAgEBAwEAAaABAQGgAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
@ -177,7 +177,7 @@
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwxgA AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw== Cw==
</value> </value>
</data> </data>
@ -229,9 +229,6 @@
<data name="lbDelayTip.Text" xml:space="preserve"> <data name="lbDelayTip.Text" xml:space="preserve">
<value>Double clicker sur une attente pour en éditer le temps</value> <value>Double clicker sur une attente pour en éditer le temps</value>
</data> </data>
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>217, 56</value>
</data>
<data name="altTabToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="altTabToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>216, 26</value> <value>216, 26</value>
</data> </data>
@ -247,4 +244,7 @@
<data name="fromFileToolStripMenuItem.Text" xml:space="preserve"> <data name="fromFileToolStripMenuItem.Text" xml:space="preserve">
<value>A partir du fichier...</value> <value>A partir du fichier...</value>
</data> </data>
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>217, 56</value>
</data>
</root> </root>

View File

@ -0,0 +1,171 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="iLKeys.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAcQBAQHEAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/
Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA
AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0
Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8
FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA
Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA
ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0
Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/
CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6
AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA
A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw==
</value>
</data>
</root>

View File

@ -0,0 +1,171 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="iLKeys.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAawBAQGsAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/
Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA
AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0
Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8
FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA
Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA
ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0
Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/
CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6
AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA
A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw==
</value>
</data>
</root>

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnSave.Text" xml:space="preserve">
<value>保存</value>
</data>
<data name="btnSaveP.Text" xml:space="preserve">
<value>プリセットを保存</value>
</data>
</root>

View File

@ -0,0 +1,174 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="altTabToolStripMenuItem.Text" xml:space="preserve">
<value>반복</value>
</data>
<data name="altTabToolStripMenuItem.ToolTipText" xml:space="preserve">
<value>반복 지연시간 편집</value>
</data>
<data name="btn4th.Text" xml:space="preserve">
<value>마우스 4버튼 클릭</value>
</data>
<data name="btn5th.Text" xml:space="preserve">
<value>마우스 5버튼 클릭</value>
</data>
<data name="btnCancel.Text" xml:space="preserve">
<value>취소</value>
</data>
<data name="btnLightbar.Text" xml:space="preserve">
<value>라이트 바 색 변경</value>
</data>
<data name="btnLoadP.Text" xml:space="preserve">
<value>프리셋 불러오기</value>
</data>
<data name="btnRecord.Text" xml:space="preserve">
<value>녹화</value>
</data>
<data name="btnRumble.Text" xml:space="preserve">
<value>진동 추가</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>저장</value>
</data>
<data name="btnSaveP.Text" xml:space="preserve">
<value>프리셋 저장</value>
</data>
<data name="cBRecordDelays.Text" xml:space="preserve">
<value>지연도 녹화</value>
</data>
<data name="cBStyle.Items" xml:space="preserve">
<value>한번만 실행</value>
</data>
<data name="cBStyle.Items1" xml:space="preserve">
<value>누르고 있는동안 실행</value>
</data>
<data name="fromFileToolStripMenuItem.Text" xml:space="preserve">
<value>가져오기..</value>
</data>
<data name="lbDelayTip.Text" xml:space="preserve">
<value>더블클릭 후 기다려 시간을 설정</value>
</data>
<data name="lbMacroOrder.Text" xml:space="preserve">
<value>메크로 순서</value>
</data>
<data name="lbRecordTip.Text" xml:space="preserve">
<value>키보드/마우스 + 컨트롤러 1 로 녹화</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnRecord.Text" xml:space="preserve">
<value>Snemaj</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBRecordDelays.Location" type="System.Drawing.Point, System.Drawing">
<value>791, 149</value>
</data>
<data name="cBRecordDelays.Size" type="System.Drawing.Size, System.Drawing">
<value>125, 21</value>
</data>
<data name="cBRecordDelays.Text" xml:space="preserve">
<value>Snemaj zamike</value>
</data>
<data name="iLKeys.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAcgBAQHIAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/
Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA
AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0
Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8
FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA
Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA
ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0
Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/
CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6
AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA
A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw==
</value>
</data>
<data name="cBStyle.Items" xml:space="preserve">
<value>Zavrti enkrat</value>
</data>
<data name="cBStyle.Items1" xml:space="preserve">
<value>Ponovi med držanjem</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Shrani</value>
</data>
<data name="btnCancel.Text" xml:space="preserve">
<value>Prekliči</value>
</data>
<data name="btnSaveP.Text" xml:space="preserve">
<value>Shrani podnastavljeno</value>
</data>
<data name="btnLightbar.Text" xml:space="preserve">
<value>Spremeni barvo lučke</value>
</data>
<data name="btnRumble.Text" xml:space="preserve">
<value>Dodaj brundanje</value>
</data>
<data name="btn5th.Text" xml:space="preserve">
<value>5. gumb miške</value>
</data>
<data name="btn4th.Text" xml:space="preserve">
<value>4. gumb miške</value>
</data>
<data name="btnLoadP.Text" xml:space="preserve">
<value>Naloži prednastavljeno</value>
</data>
<data name="lbMacroOrder.Size" type="System.Drawing.Size, System.Drawing">
<value>81, 17</value>
</data>
<data name="lbMacroOrder.Text" xml:space="preserve">
<value>Macro ukaz</value>
</data>
<data name="lbDelayTip.Text" xml:space="preserve">
<value>Dvojni klik; počakajte za urejanje časa</value>
</data>
<data name="altTabToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>188, 26</value>
</data>
<data name="altTabToolStripMenuItem.Text" xml:space="preserve">
<value>Brskaj po programih</value>
</data>
<data name="altTabToolStripMenuItem.ToolTipText" xml:space="preserve">
<value>Uredi in počakaj, da se spremeni hitrost ciklusa</value>
</data>
<data name="fromFileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>188, 26</value>
</data>
<data name="fromFileToolStripMenuItem.Text" xml:space="preserve">
<value>Iz mape...</value>
</data>
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>189, 56</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,247 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnRecord.Text" xml:space="preserve">
<value>Запис</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="cBRecordDelays.Location" type="System.Drawing.Point, System.Drawing">
<value>757, 149</value>
</data>
<data name="cBRecordDelays.Size" type="System.Drawing.Size, System.Drawing">
<value>159, 21</value>
</data>
<data name="cBRecordDelays.Text" xml:space="preserve">
<value>Записати затримки</value>
</data>
<data name="iLKeys.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAQ
CgAAAk1TRnQBSQFMAgEBAwEAAagBAQGoAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/yIAAf8B7wH3AfQGAAH/
Au8B/xgAAf8BBw4AAuwB/wcAAf8BBwHxAQcBvAGRAosBkQG8AQcB8QHvAf8XAAH/AuwBBw0AAuwB/wgA
AfQB8AEHBosCBwH0FwAB/wTsAQcMAALsAf8IAAHxAZEBiwe0AZEB8RYAAf8G7AEHCwAC7AH/BwAB9AG0
Aa0BtAG1AfEC/wHxAbUBtAGtAbQB9BUAAuwBBwLsAf8C7AH/CgAC7AH/BwABvAGzAbQBtQb/ArQBswG8
FQAB7AEHAQAC7AL/AewB/woAAuwB/wcAAbUBtAG1ARkC9AEHAfMB/wEZAQkCtAG1FQABBwIAAuwB/wEA
Av8HAAH/AgAC7AH/AgAB/wQAArQBtQP0AuwBvAH/ARkDtBgAAuwB/woAAewB/wEAAuwB/wEAAQcB/wQA
ArQBtQH0Av8B7AHvAewBBwEZA7QYAALsAf8KAALsAf8C7AH/AQcB7AH/BAABuwG0AbsBGQH/AfQBkgH0
Af8B7wEZAbUBtAG7GAAC7AH/CgABBwTsAQcC7AH/BAAB8AG0AbsBCQH/AfQB8gP/ArsBtAHwGAAC7AH/
CwABBwXsAf8EAAH0AVgBUgG7AgkB8wL0AfMBCQG7ARwBUgF5Af8XAALsAf8MAAEHA+wB/wUAARoBmgF6
AVIDCQK1AgkBuwFYARoBegH/FwAC7AH/DQABBwHsAf8GAAEaAXoBwwF6AVgB3AQJAbsBUgKaAXoB/xcA
A/8OAAH/BwAB/wEaAXoBwwF6AZkBCQLcAQkBmQF6AZoBegH2MgAB/wEaAVkBegH/BAAB/wFZAXoB9hIA
AUIBTQE+BwABPgMAASgDAAFAAwABEAMAAQEBAAEBBQABgBcAA/8BAAT/AYcB4QIAAf4BfwH+AT8BgAEB
AgAB/AE/Af4BPwHAAQMCAAH4AR8B/gE/AcABAwIAAfABDwH+AT8BgAEBAgAB8AEHAf4BPwGAAQECAAHy
AQcB/gE/AYABAQIAAfYBJwH2ATcBgAEBAgAB/gE/AfIBJwGAAQECAAH+AT8B8AEHAYABAQIAAf4BPwHw
AQcBgAEBAgAB/gE/AfgBDwQAAf4BPwH8AR8EAAH+AT8B/gE/BAAB/gE/Af8BfwEAAQECAAT/AYMBwwIA
Cw==
</value>
</data>
<data name="cBStyle.Items" xml:space="preserve">
<value>Зіграти раз</value>
</data>
<data name="cBStyle.Items1" xml:space="preserve">
<value>Повторювати при утриманні</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Зберегти</value>
</data>
<data name="btnCancel.Text" xml:space="preserve">
<value>Скасувати</value>
</data>
<data name="btnSaveP.Text" xml:space="preserve">
<value>Зберегти пресет</value>
</data>
<data name="lbRecordTip.Size" type="System.Drawing.Size, System.Drawing">
<value>298, 17</value>
</data>
<data name="lbRecordTip.Text" xml:space="preserve">
<value>Клавіатура/Миша + контролер 1 для запису</value>
</data>
<data name="btnLightbar.Text" xml:space="preserve">
<value>Зміна кольору світлопанелі</value>
</data>
<data name="btnRumble.Text" xml:space="preserve">
<value>Додати вібрацію</value>
</data>
<data name="btn5th.Text" xml:space="preserve">
<value>5-та кнопка миші натиснена</value>
</data>
<data name="btn4th.Text" xml:space="preserve">
<value>4-та кнопка миші натиснена</value>
</data>
<data name="btnLoadP.Text" xml:space="preserve">
<value>Завантажити пресет</value>
</data>
<data name="lbMacroOrder.Size" type="System.Drawing.Size, System.Drawing">
<value>128, 17</value>
</data>
<data name="lbMacroOrder.Text" xml:space="preserve">
<value>Порядок Макросів</value>
</data>
<data name="lbDelayTip.Text" xml:space="preserve">
<value>Подвійний клац на затримці для редагування часу</value>
</data>
<data name="altTabToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>158, 26</value>
</data>
<data name="altTabToolStripMenuItem.Text" xml:space="preserve">
<value>Зміна програм</value>
</data>
<data name="altTabToolStripMenuItem.ToolTipText" xml:space="preserve">
<value>Редагувати затримку для зміни частоти зміни</value>
</data>
<data name="fromFileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>158, 26</value>
</data>
<data name="fromFileToolStripMenuItem.Text" xml:space="preserve">
<value>З файлу...</value>
</data>
<data name="cMSLoadPresets.Size" type="System.Drawing.Size, System.Drawing">
<value>159, 56</value>
</data>
</root>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bnAppdataFolder.Text" xml:space="preserve">
<value>Data aplikace</value>
</data>
<data name="bnPrgmFolder.Text" xml:space="preserve">
<value>Složka s programem</value>
</data>
<data name="cBDeleteOther.Text" xml:space="preserve">
<value>Neodstraňovat původní nastavení</value>
</data>
</root>

View File

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bnAppdataFolder.Text" xml:space="preserve">
<value>Appdata</value>
</data>
<data name="cBDeleteOther.Text" xml:space="preserve">
<value>Μην διαγράψετε τις άλλες ρυθμίσεις ακόμα</value>
</data>
<data name="label4.Text" xml:space="preserve">
<value>Για αυτούς που προτιμούν μία κανονική εγκατάσταση οι Ρυθμίσεις αποθηκεύονται στο %appdata%/ds4tool</value>
</data>
<data name="lbMultiSaves.Text" xml:space="preserve">
<value>Πολλαπλές τοποθεσίες αποθήκευσης ανιχθεύθηκαν</value>
</data>
<data name="lbPickWhere.Text" xml:space="preserve">
<value>Διάλεξε που θες να αποθηκεύονται οι ρυθμίσεις και τα προφίλ</value>
</data>
</root>

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bnAppdataFolder.Text" xml:space="preserve">
<value>Appdata</value>
</data>
<data name="bnPrgmFolder.Text" xml:space="preserve">
<value>Ohjelmakansio</value>
</data>
<data name="cBDeleteOther.Text" xml:space="preserve">
<value>Älä poista asetuksia vielä</value>
</data>
<data name="label3.Text" xml:space="preserve">
<value>Niille jotka haluavat siirrettävän asennuksen Huom: tämä vaihtoehto ei toimi admin-kansioissa ilman UAC:tä</value>
</data>
<data name="label4.Text" xml:space="preserve">
<value>Niille jotka haluavat perinteisen asennuksen. Asetukset tallennetaan %appdata%/ds4tool kansioon</value>
</data>
<data name="lbMultiSaves.Text" xml:space="preserve">
<value>Useampi tallennuspaikka valittuna</value>
</data>
<data name="lbPickWhere.Text" xml:space="preserve">
<value>Valitse mihin haluat tallentaa asetukset ja profiilit</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bnAppdataFolder.Text" xml:space="preserve">
<value>Appdata 폴더</value>
</data>
<data name="bnPrgmFolder.Text" xml:space="preserve">
<value>프로그램 폴더</value>
</data>
<data name="cBDeleteOther.Text" xml:space="preserve">
<value>다른 설정은 삭제하지 않음</value>
</data>
<data name="label3.Text" xml:space="preserve">
<value>무설치 버전 사용자에게.. 이 옵션은 UAC보호된 폴더내 에선 효과가 없습니다.</value>
</data>
<data name="label4.Text" xml:space="preserve">
<value>설치 버전 사용자에게.. 설정은 %appdata%/ds4tool 에 저장됩니다</value>
</data>
<data name="lbMultiSaves.Text" xml:space="preserve">
<value>다중 저장경로가 발견됨</value>
</data>
<data name="lbPickWhere.Text" xml:space="preserve">
<value>세팅 및 프로파일이 저장될 곳을 선택하세요</value>
</data>
</root>

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bnAppdataFolder.Text" xml:space="preserve">
<value>Podatki aplikacije</value>
</data>
<data name="bnPrgmFolder.Text" xml:space="preserve">
<value>Mapa z programom</value>
</data>
<data name="cBDeleteOther.Text" xml:space="preserve">
<value>Ne izbriši ostalih nastavitev (še)</value>
</data>
<data name="label3.Text" xml:space="preserve">
<value>Za tiste, ki imajo raje prenosen program: Ta možnost ne deluje, če ste v admin mapi w/o UAC</value>
</data>
<data name="label4.Text" xml:space="preserve">
<value>Za tiste, ki imajo raje navadne namestitvene nastavitve shranjeno na %appdata%/ds4tool</value>
</data>
<data name="lbMultiSaves.Text" xml:space="preserve">
<value>Več shranjenih mest najdeno</value>
</data>
<data name="lbPickWhere.Text" xml:space="preserve">
<value>izberi kje bodo shranjene nastavitve in računi</value>
</data>
</root>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bnAppdataFolder.Text" xml:space="preserve">
<value>Папка даних</value>
</data>
<data name="bnPrgmFolder.Text" xml:space="preserve">
<value>Папка програми</value>
</data>
<data name="cBDeleteOther.Text" xml:space="preserve">
<value>Покищо не видаляйте інші налаштування</value>
</data>
<data name="label3.Text" xml:space="preserve">
<value>Для тих хто користується портативною версією: ця опція не працює якщо увімкнуто UAC</value>
</data>
<data name="label4.Text" xml:space="preserve">
<value>Для тих хто користується звичайною версією, налаштування зберігаються в %appdata%/ds4tool</value>
</data>
<data name="lbMultiSaves.Text" xml:space="preserve">
<value>Знайдено декілька місць збереження</value>
</data>
<data name="lbPickWhere.Text" xml:space="preserve">
<value>Оберіть місце для збереження налаштувань і профілів</value>
</data>
</root>

View File

@ -80,14 +80,13 @@
this.lbEmptyBatt = new System.Windows.Forms.Label(); this.lbEmptyBatt = new System.Windows.Forms.Label();
this.lbSecsBatt = new System.Windows.Forms.Label(); this.lbSecsBatt = new System.Windows.Forms.Label();
this.pnlGameDVR = new System.Windows.Forms.Panel(); this.pnlGameDVR = new System.Windows.Forms.Panel();
this.btnCustomDVRKey = new System.Windows.Forms.Button(); this.btnDTapT = new System.Windows.Forms.Button();
this.cBDTapDVR = new System.Windows.Forms.ComboBox(); this.btnHoldT = new System.Windows.Forms.Button();
this.btnSTapT = new System.Windows.Forms.Button();
this.lbDTapDVR = new System.Windows.Forms.Label(); this.lbDTapDVR = new System.Windows.Forms.Label();
this.cBHoldDVR = new System.Windows.Forms.ComboBox();
this.lbHoldDVR = new System.Windows.Forms.Label(); this.lbHoldDVR = new System.Windows.Forms.Label();
this.cBTapDVR = new System.Windows.Forms.ComboBox();
this.lbTapDVR = new System.Windows.Forms.Label(); this.lbTapDVR = new System.Windows.Forms.Label();
this.advColorDialog = new AdvancedColorDialog(); this.advColorDialog = new DS4Windows.AdvancedColorDialog();
((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit();
this.pnlProgram.SuspendLayout(); this.pnlProgram.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nUDProg)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDProg)).BeginInit();
@ -221,7 +220,8 @@
resources.GetString("cBActions.Items3"), resources.GetString("cBActions.Items3"),
resources.GetString("cBActions.Items4"), resources.GetString("cBActions.Items4"),
resources.GetString("cBActions.Items5"), resources.GetString("cBActions.Items5"),
resources.GetString("cBActions.Items6")}); resources.GetString("cBActions.Items6"),
resources.GetString("cBActions.Items7")});
resources.ApplyResources(this.cBActions, "cBActions"); resources.ApplyResources(this.cBActions, "cBActions");
this.cBActions.Name = "cBActions"; this.cBActions.Name = "cBActions";
this.cBActions.SelectedIndexChanged += new System.EventHandler(this.cBActions_SelectedIndexChanged); this.cBActions.SelectedIndexChanged += new System.EventHandler(this.cBActions_SelectedIndexChanged);
@ -548,75 +548,49 @@
// //
// pnlGameDVR // pnlGameDVR
// //
this.pnlGameDVR.Controls.Add(this.btnCustomDVRKey); this.pnlGameDVR.Controls.Add(this.btnDTapT);
this.pnlGameDVR.Controls.Add(this.cBDTapDVR); this.pnlGameDVR.Controls.Add(this.btnHoldT);
this.pnlGameDVR.Controls.Add(this.btnSTapT);
this.pnlGameDVR.Controls.Add(this.lbDTapDVR); this.pnlGameDVR.Controls.Add(this.lbDTapDVR);
this.pnlGameDVR.Controls.Add(this.cBHoldDVR);
this.pnlGameDVR.Controls.Add(this.lbHoldDVR); this.pnlGameDVR.Controls.Add(this.lbHoldDVR);
this.pnlGameDVR.Controls.Add(this.cBTapDVR);
this.pnlGameDVR.Controls.Add(this.lbTapDVR); this.pnlGameDVR.Controls.Add(this.lbTapDVR);
resources.ApplyResources(this.pnlGameDVR, "pnlGameDVR"); resources.ApplyResources(this.pnlGameDVR, "pnlGameDVR");
this.pnlGameDVR.Name = "pnlGameDVR"; this.pnlGameDVR.Name = "pnlGameDVR";
// //
// btnCustomDVRKey // btnDTapT
// //
resources.ApplyResources(this.btnCustomDVRKey, "btnCustomDVRKey"); resources.ApplyResources(this.btnDTapT, "btnDTapT");
this.btnCustomDVRKey.Name = "btnCustomDVRKey"; this.btnDTapT.Name = "btnDTapT";
this.btnCustomDVRKey.Tag = "0"; this.btnDTapT.Tag = "0";
this.btnCustomDVRKey.UseVisualStyleBackColor = true; this.btnDTapT.UseVisualStyleBackColor = true;
this.btnDTapT.Click += new System.EventHandler(this.btnDTapT_Click);
// //
// cBDTapDVR // btnHoldT
// //
this.cBDTapDVR.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; resources.ApplyResources(this.btnHoldT, "btnHoldT");
this.cBDTapDVR.FormattingEnabled = true; this.btnHoldT.Name = "btnHoldT";
this.cBDTapDVR.Items.AddRange(new object[] { this.btnHoldT.Tag = "0";
resources.GetString("cBDTapDVR.Items"), this.btnHoldT.UseVisualStyleBackColor = true;
resources.GetString("cBDTapDVR.Items1"), this.btnHoldT.Click += new System.EventHandler(this.btnHoldT_Click);
resources.GetString("cBDTapDVR.Items2"), //
resources.GetString("cBDTapDVR.Items3"), // btnSTapT
resources.GetString("cBDTapDVR.Items4")}); //
resources.ApplyResources(this.cBDTapDVR, "cBDTapDVR"); resources.ApplyResources(this.btnSTapT, "btnSTapT");
this.cBDTapDVR.Name = "cBDTapDVR"; this.btnSTapT.Name = "btnSTapT";
this.cBDTapDVR.SelectedIndexChanged += new System.EventHandler(this.cBDVR_SelectedIndexChanged); this.btnSTapT.Tag = "0";
this.btnSTapT.UseVisualStyleBackColor = true;
this.btnSTapT.Click += new System.EventHandler(this.btnSTapT_Click);
// //
// lbDTapDVR // lbDTapDVR
// //
resources.ApplyResources(this.lbDTapDVR, "lbDTapDVR"); resources.ApplyResources(this.lbDTapDVR, "lbDTapDVR");
this.lbDTapDVR.Name = "lbDTapDVR"; this.lbDTapDVR.Name = "lbDTapDVR";
// //
// cBHoldDVR
//
this.cBHoldDVR.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cBHoldDVR.FormattingEnabled = true;
this.cBHoldDVR.Items.AddRange(new object[] {
resources.GetString("cBHoldDVR.Items"),
resources.GetString("cBHoldDVR.Items1"),
resources.GetString("cBHoldDVR.Items2"),
resources.GetString("cBHoldDVR.Items3"),
resources.GetString("cBHoldDVR.Items4")});
resources.ApplyResources(this.cBHoldDVR, "cBHoldDVR");
this.cBHoldDVR.Name = "cBHoldDVR";
this.cBHoldDVR.SelectedIndexChanged += new System.EventHandler(this.cBDVR_SelectedIndexChanged);
//
// lbHoldDVR // lbHoldDVR
// //
resources.ApplyResources(this.lbHoldDVR, "lbHoldDVR"); resources.ApplyResources(this.lbHoldDVR, "lbHoldDVR");
this.lbHoldDVR.Name = "lbHoldDVR"; this.lbHoldDVR.Name = "lbHoldDVR";
// //
// cBTapDVR
//
this.cBTapDVR.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cBTapDVR.FormattingEnabled = true;
this.cBTapDVR.Items.AddRange(new object[] {
resources.GetString("cBTapDVR.Items"),
resources.GetString("cBTapDVR.Items1"),
resources.GetString("cBTapDVR.Items2"),
resources.GetString("cBTapDVR.Items3"),
resources.GetString("cBTapDVR.Items4")});
resources.ApplyResources(this.cBTapDVR, "cBTapDVR");
this.cBTapDVR.Name = "cBTapDVR";
this.cBTapDVR.SelectedIndexChanged += new System.EventHandler(this.cBDVR_SelectedIndexChanged);
//
// lbTapDVR // lbTapDVR
// //
resources.ApplyResources(this.lbTapDVR, "lbTapDVR"); resources.ApplyResources(this.lbTapDVR, "lbTapDVR");
@ -627,7 +601,7 @@
this.advColorDialog.AnyColor = true; this.advColorDialog.AnyColor = true;
this.advColorDialog.Color = System.Drawing.Color.Blue; this.advColorDialog.Color = System.Drawing.Color.Blue;
this.advColorDialog.FullOpen = true; this.advColorDialog.FullOpen = true;
this.advColorDialog.OnUpdateColor += new AdvancedColorDialog.ColorUpdateHandler(this.advColorDialog_OnUpdateColor); this.advColorDialog.OnUpdateColor += new DS4Windows.AdvancedColorDialog.ColorUpdateHandler(this.advColorDialog_OnUpdateColor);
// //
// SpecActions // SpecActions
// //
@ -725,12 +699,11 @@
private System.Windows.Forms.Label lbHoldForProg; private System.Windows.Forms.Label lbHoldForProg;
private System.Windows.Forms.Label lbSecsProg; private System.Windows.Forms.Label lbSecsProg;
private System.Windows.Forms.Panel pnlGameDVR; private System.Windows.Forms.Panel pnlGameDVR;
private System.Windows.Forms.ComboBox cBTapDVR;
private System.Windows.Forms.Label lbTapDVR; private System.Windows.Forms.Label lbTapDVR;
private System.Windows.Forms.ComboBox cBDTapDVR;
private System.Windows.Forms.Label lbDTapDVR; private System.Windows.Forms.Label lbDTapDVR;
private System.Windows.Forms.ComboBox cBHoldDVR;
private System.Windows.Forms.Label lbHoldDVR; private System.Windows.Forms.Label lbHoldDVR;
private System.Windows.Forms.Button btnCustomDVRKey; public System.Windows.Forms.Button btnDTapT;
public System.Windows.Forms.Button btnHoldT;
public System.Windows.Forms.Button btnSTapT;
} }
} }

View File

@ -21,6 +21,7 @@ namespace DS4Windows
public List<string> controls = new List<string>(); public List<string> controls = new List<string>();
public List<string> ucontrols = new List<string>(); public List<string> ucontrols = new List<string>();
public List<int> macrostag = new List<int>(); public List<int> macrostag = new List<int>();
public List<int>[] multiMacrostag = { new List<int>(), new List<int>(), new List<int>() };
public bool macrorepeat, newaction; public bool macrorepeat, newaction;
public string program; public string program;
int editIndex; int editIndex;
@ -38,13 +39,14 @@ namespace DS4Windows
cBProfiles.SelectedIndex = 0; cBProfiles.SelectedIndex = 0;
cBActions.SelectedIndex = 0; cBActions.SelectedIndex = 0;
cBPressRelease.SelectedIndex = 0; cBPressRelease.SelectedIndex = 0;
if (Environment.OSVersion.Version.Major >= 10) /*if (Environment.OSVersion.Version.Major >= 10)
{ {
cBActions.Items.Add("Xbox Game DVR"); cBActions.Items.Add("Xbox Game DVR");
cBTapDVR.SelectedIndex = 0; cBTapDVR.SelectedIndex = 0;
cBHoldDVR.SelectedIndex = 2; cBHoldDVR.SelectedIndex = 2;
cBDTapDVR.SelectedIndex = 1; cBDTapDVR.SelectedIndex = 1;
} }*/
cBActions.Items[7] = Properties.Resources.MultiAction;
foreach (object s in opt.root.lBProfiles.Items) foreach (object s in opt.root.lBProfiles.Items)
cBProfiles.Items.Add(s.ToString()); cBProfiles.Items.Add(s.ToString());
editIndex = editindex; editIndex = editindex;
@ -129,7 +131,7 @@ namespace DS4Windows
bnFullColor.BackColor = Color.FromArgb(byte.Parse(dets[6]), byte.Parse(dets[7]), byte.Parse(dets[8])); bnFullColor.BackColor = Color.FromArgb(byte.Parse(dets[6]), byte.Parse(dets[7]), byte.Parse(dets[8]));
break; break;
case "XboxGameDVR": case "XboxGameDVR":
if (cBActions.Items.Count < 8) /* if (cBActions.Items.Count < 8)
{ {
cBActions.Items.Add("Xbox Game DVR"); cBActions.Items.Add("Xbox Game DVR");
cBTapDVR.SelectedIndex = 0; cBTapDVR.SelectedIndex = 0;
@ -145,7 +147,35 @@ namespace DS4Windows
btnCustomDVRKey.Tag = int.Parse(dets[3]); btnCustomDVRKey.Tag = int.Parse(dets[3]);
cBTapDVR.SelectedIndex = int.Parse(dets[0]); cBTapDVR.SelectedIndex = int.Parse(dets[0]);
cBHoldDVR.SelectedIndex = int.Parse(dets[1]); cBHoldDVR.SelectedIndex = int.Parse(dets[1]);
cBDTapDVR.SelectedIndex = int.Parse(dets[2]); cBDTapDVR.SelectedIndex = int.Parse(dets[2]);*/
break;
case "MultiAction":
cBActions.SelectedIndex = 7;
dets = act.details.Split(',');
for (int i = 0; i < 3; i++)
{
string[] macs = dets[i].Split('/');
foreach (string s in macs)
{
int v;
if (int.TryParse(s, out v))
multiMacrostag[i].Add(v);
}
switch (i)
{
case 0: btnSTapT.Text = macs.Length > 1 ? Properties.Resources.MacroRecorded : Properties.Resources.SelectMacro; break;
case 1: btnHoldT.Text = macs.Length > 1 ? Properties.Resources.MacroRecorded : Properties.Resources.SelectMacro; break;
case 2: btnDTapT.Text = macs.Length > 1 ? Properties.Resources.MacroRecorded : Properties.Resources.SelectMacro; break;
}
}
/*if (int.Parse(dets[3]) == 0)
btnCustomDVRKey.Text = "Custom Key";
else
btnCustomDVRKey.Text = ((Keys)(int.Parse(dets[3]))).ToString();
btnCustomDVRKey.Tag = int.Parse(dets[3]);
cBTapDVR.SelectedIndex = int.Parse(dets[0]);
cBHoldDVR.SelectedIndex = int.Parse(dets[1]);
cBDTapDVR.SelectedIndex = int.Parse(dets[2]);*/
break; break;
} }
} }
@ -274,10 +304,10 @@ namespace DS4Windows
actRe = true; actRe = true;
if (!string.IsNullOrEmpty(oldprofilename) && oldprofilename != tBName.Text) if (!string.IsNullOrEmpty(oldprofilename) && oldprofilename != tBName.Text)
Global.RemoveAction(oldprofilename); Global.RemoveAction(oldprofilename);
dets = Math.Round(nUDDCBatt.Value, 1).ToString() + "," + cBNotificationBatt.Checked + "," + cbLightbarBatt.Checked + "," + dets = Math.Round(nUDDCBatt.Value, 1).ToString() + "|" + cBNotificationBatt.Checked + "|" + cbLightbarBatt.Checked + "|" +
bnEmptyColor.BackColor.R + "," + bnEmptyColor.BackColor.G + "," + bnEmptyColor.BackColor.B + "," + bnEmptyColor.BackColor.R + "|" + bnEmptyColor.BackColor.G + "|" + bnEmptyColor.BackColor.B + "|" +
bnFullColor.BackColor.R + "," + bnFullColor.BackColor.G + "," + bnFullColor.BackColor.B; bnFullColor.BackColor.R + "|" + bnFullColor.BackColor.G + "|" + bnFullColor.BackColor.B;
Global.SaveAction(tBName.Text, String.Join("/", controls), cBActions.SelectedIndex, dets, edit); Global.SaveAction(tBName.Text, string.Join("/", controls), cBActions.SelectedIndex, dets, edit);
} }
else else
{ {
@ -286,12 +316,20 @@ namespace DS4Windows
} }
break; break;
case 7: case 7:
action = "Xbox Game DVR";// Properties.Resources.CheckBattery; if (multiMacrostag[0].Count + multiMacrostag[1].Count + multiMacrostag[2].Count > 0)
{
action = Properties.Resources.MultiAction;
actRe = true; actRe = true;
if (!string.IsNullOrEmpty(oldprofilename) && oldprofilename != tBName.Text) if (!string.IsNullOrEmpty(oldprofilename) && oldprofilename != tBName.Text)
Global.RemoveAction(oldprofilename); Global.RemoveAction(oldprofilename);
dets = cBTapDVR.SelectedIndex + "," + cBHoldDVR.SelectedIndex + "," + cBDTapDVR.SelectedIndex + "," + int.Parse(btnCustomDVRKey.Tag.ToString()); //dets = cBTapDVR.SelectedIndex + "," + cBHoldDVR.SelectedIndex + "," + cBDTapDVR.SelectedIndex + "," + int.Parse(btnCustomDVRKey.Tag.ToString());
dets = string.Join("/", multiMacrostag[0]) + "," + string.Join("/", multiMacrostag[1]) + "," + string.Join("/", multiMacrostag[2]);
Global.SaveAction(tBName.Text, controls[0], cBActions.SelectedIndex, dets, edit); Global.SaveAction(tBName.Text, controls[0], cBActions.SelectedIndex, dets, edit);
}
else
{
}
break; break;
} }
if (actRe) if (actRe)
@ -451,7 +489,7 @@ namespace DS4Windows
} }
private void cBDVR_SelectedIndexChanged(object sender, EventArgs e) private void cBDVR_SelectedIndexChanged(object sender, EventArgs e)
{ {
if (((ComboBox)sender).SelectedIndex == 3) /*if (((ComboBox)sender).SelectedIndex == 3)
{ {
if (!loadingAction) if (!loadingAction)
new KBM360(this, btnCustomDVRKey, false).ShowDialog(); new KBM360(this, btnCustomDVRKey, false).ShowDialog();
@ -464,9 +502,31 @@ namespace DS4Windows
((ComboBox)sender).SelectedIndexChanged -= cBDVR_SelectedIndexChanged; ((ComboBox)sender).SelectedIndexChanged -= cBDVR_SelectedIndexChanged;
((ComboBox)sender).SelectedIndex = 3; ((ComboBox)sender).SelectedIndex = 3;
((ComboBox)sender).SelectedIndexChanged += cBDVR_SelectedIndexChanged; ((ComboBox)sender).SelectedIndexChanged += cBDVR_SelectedIndexChanged;
} }*/
} }
private void btnSTapT_Click(object sender, EventArgs e)
{
OpenRecordBox(0);
}
private void btnHoldT_Click(object sender, EventArgs e)
{
OpenRecordBox(1);
}
private void btnDTapT_Click(object sender, EventArgs e)
{
OpenRecordBox(2);
}
void OpenRecordBox(int i)
{
rb = new RecordBox(this, i);
rb.TopLevel = true;
rb.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
rb.ShowDialog();
}
private void cBBatt_CheckedChanged(object sender, EventArgs e) private void cBBatt_CheckedChanged(object sender, EventArgs e)
{ {
cbLightbarBatt.ForeColor = Color.Black; cbLightbarBatt.ForeColor = Color.Black;

View File

@ -0,0 +1,156 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="btnBrowse.Text" xml:space="preserve">
<value>Procházet...</value>
</data>
<data name="btnCancel.Text" xml:space="preserve">
<value>Zrušit</value>
</data>
<data name="btnRecordMacro.Text" xml:space="preserve">
<value>Zaznamenat makro</value>
</data>
<data name="btnSave.Text" xml:space="preserve">
<value>Uložit</value>
</data>
<data name="btnSelectKey.Text" xml:space="preserve">
<value>Vybrat klíč</value>
</data>
<data name="cBActions.Items" xml:space="preserve">
<value>-Vyberte akci-</value>
</data>
<data name="cBActions.Items1" xml:space="preserve">
<value>Zaznamenat makro</value>
</data>
<data name="cBActions.Items2" xml:space="preserve">
<value>Spustit program</value>
</data>
<data name="cBActions.Items3" xml:space="preserve">
<value>Načíst profil</value>
</data>
<data name="cBActions.Items5" xml:space="preserve">
<value>Odpojit od Bluetooth</value>
</data>
<data name="cBActions.Items6" xml:space="preserve">
<value>Ověřit stav baterie</value>
</data>
<data name="cBMacroScanCode.Text" xml:space="preserve">
<value>Naskenovat kód</value>
</data>
</root>

Some files were not shown because too many files have changed in this diff Show More