Skip to content

Commit a24105e

Browse files
committed
Merge branch 'development' of https://github.com/fdorg/flashdevelop into Korean
2 parents 1c89ad9 + 5aa9cd4 commit a24105e

File tree

8 files changed

+405
-164
lines changed

8 files changed

+405
-164
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ PluginCore/Bin
2424
/FlashDevelop/Bin/Debug/Exceptions.log
2525
/FlashDevelop/Bin/Debug/Tools/fdbuild/fdbuild.exe
2626
FlashDevelop/Bin/Debug/Settings/Themes/CURRENT
27+
packages/

FlashDevelop/Dialogs/ShortcutDialog.cs

Lines changed: 384 additions & 163 deletions
Large diffs are not rendered by default.

FlashDevelop/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2045,7 +2045,7 @@ public void ApplyAllSettings()
20452045
{
20462046
if (this.InvokeRequired)
20472047
{
2048-
this.BeginInvoke((MethodInvoker)delegate { this.ApplyAllSettings(); });
2048+
this.BeginInvoke((MethodInvoker) this.ApplyAllSettings);
20492049
return;
20502050
}
20512051
ShortcutManager.ApplyAllShortcuts();

PluginCore/PluginCore/Resources/de_DE.resX

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5964,6 +5964,10 @@ Eigene Sprachumgebungen müssen eine Erweiterung der Standard-Sprachumgebung sei
59645964
<value>Highlight word:</value>
59655965
<comment>Added after 5.0.2</comment>
59665966
</data>
5967+
<data name="FlashDevelop.Info.ShortcutConflictsPresent" xml:space="preserve">
5968+
<value>There are one or more conflicts present. Ignore and continue?</value>
5969+
<comment>REQUIRES TRANSLATION</comment>
5970+
</data>
59675971
<data name="ASCompletion.Info.NoContextGeneratorCode" xml:space="preserve">
59685972
<value>No contextual code generation available.</value>
59695973
<comment>REQUIRES TRANSLATION</comment>

PluginCore/PluginCore/Resources/en_US.resX

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5980,6 +5980,9 @@ Custom locales must be an extension of a default locale, e.g. en-US.</value>
59805980
<value>Highlight word:</value>
59815981
<comment>Added after 5.0.2</comment>
59825982
</data>
5983+
<data name="FlashDevelop.Info.ShortcutConflictsPresent" xml:space="preserve">
5984+
<value>There are one or more conflicts present. Ignore and continue?</value>
5985+
</data>
59835986
<data name="ASCompletion.Info.NoContextGeneratorCode" xml:space="preserve">
59845987
<value>No contextual code generation available.</value>
59855988
</data>

PluginCore/PluginCore/Resources/eu_ES.resX

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5961,6 +5961,10 @@ Lokalizazio pertsonalizatuek lehenetsiaren luzapen bat izan behar dute, adb. en-
59615961
<value>Highlight word:</value>
59625962
<comment>Added after 5.0.2</comment>
59635963
</data>
5964+
<data name="FlashDevelop.Info.ShortcutConflictsPresent" xml:space="preserve">
5965+
<value>There are one or more conflicts present. Ignore and continue?</value>
5966+
<comment>REQUIRES TRANSLATION</comment>
5967+
</data>
59645968
<data name="ASCompletion.Info.NoContextGeneratorCode" xml:space="preserve">
59655969
<value>No contextual code generation available.</value>
59665970
<comment>REQUIRES TRANSLATION</comment>

PluginCore/PluginCore/Resources/ja_JP.resX

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6022,6 +6022,10 @@ UseData:"</value>
60226022
<value>Highlight word:</value>
60236023
<comment>Added after 5.0.2</comment>
60246024
</data>
6025+
<data name="FlashDevelop.Info.ShortcutConflictsPresent" xml:space="preserve">
6026+
<value>There are one or more conflicts present. Ignore and continue?</value>
6027+
<comment>REQUIRES TRANSLATION</comment>
6028+
</data>
60256029
<data name="ASCompletion.Info.NoContextGeneratorCode" xml:space="preserve">
60266030
<value>No contextual code generation available.</value>
60276031
<comment>REQUIRES TRANSLATION</comment>

PluginCore/PluginCore/Resources/zh_CN.resx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5974,6 +5974,10 @@
59745974
<value>Highlight word:</value>
59755975
<comment>Added after 5.0.2</comment>
59765976
</data>
5977+
<data name="FlashDevelop.Info.ShortcutConflictsPresent" xml:space="preserve">
5978+
<value>There are one or more conflicts present. Ignore and continue?</value>
5979+
<comment>REQUIRES TRANSLATION</comment>
5980+
</data>
59775981
<data name="ASCompletion.Info.NoContextGeneratorCode" xml:space="preserve">
59785982
<value>No contextual code generation available.</value>
59795983
<comment>REQUIRES TRANSLATION</comment>

0 commit comments

Comments
 (0)