Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7fbc2a8

Browse filesBrowse files
committed
Label changes, typo fix and cleanup...
1 parent b8f2cb5 commit 7fbc2a8
Copy full SHA for 7fbc2a8

File tree

Expand file treeCollapse file tree

8 files changed

+18
-20
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

8 files changed

+18
-20
lines changed
Open diff view settings
Collapse file

‎External/Plugins/ProjectManager/Controls/RecentProjectsMenu.cs‎

Copy file name to clipboardExpand all lines: External/Plugins/ProjectManager/Controls/RecentProjectsMenu.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private ToolStripMenuItem BuildItem(string projectPath, bool showPath)
114114

115115
private void CleanAllItems()
116116
{
117-
FileHelper.FilterByExisiting(PluginMain.Settings.RecentProjects, true);
117+
FileHelper.FilterByExisting(PluginMain.Settings.RecentProjects, true);
118118
RebuildList();
119119
}
120120

Collapse file

‎FlashDevelop/MainForm.cs‎

Copy file name to clipboardExpand all lines: FlashDevelop/MainForm.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2276,7 +2276,7 @@ public void ReopenClosed(Object sender, System.EventArgs e)
22762276
/// </summary>
22772277
public void CleanReopenList(Object sender, System.EventArgs e)
22782278
{
2279-
FileHelper.FilterByExisiting(this.appSettings.PreviousDocuments, true);
2279+
FileHelper.FilterByExisting(this.appSettings.PreviousDocuments, true);
22802280
ButtonManager.PopulateReopenMenu();
22812281
}
22822282

Collapse file

‎PluginCore/PluginCore/Helpers/FileHelper.cs‎

Copy file name to clipboardExpand all lines: PluginCore/PluginCore/Helpers/FileHelper.cs
+5-7Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -400,24 +400,22 @@ public static EncodingFileInfo GetEncodingFileInfo(String file)
400400
/// <summary>
401401
/// Filters a list of paths so that only those meeting the File.Exists() condition remain.
402402
/// </summary>
403-
public static List<string> FilterByExisiting(List<string> paths, bool logicalDrivesOnly)
403+
public static List<String> FilterByExisting(List<String> paths, Boolean logicalDrivesOnly)
404404
{
405-
List<string> toCheck = new List<string>(paths);
405+
List<String> toCheck = new List<String>(paths);
406406
if (logicalDrivesOnly)
407407
{
408408
DriveInfo[] driveInfo = DriveInfo.GetDrives();
409-
toCheck = new List<string>(paths);
410-
toCheck.RemoveAll(delegate(string path)
409+
toCheck = new List<String>(paths);
410+
toCheck.RemoveAll(delegate(String path)
411411
{
412412
foreach (DriveInfo drive in driveInfo)
413413
{
414-
if (path.StartsWith(drive.RootDirectory.ToString()))
415-
return false;
414+
if (path.StartsWith(drive.RootDirectory.ToString())) return false;
416415
}
417416
return true;
418417
});
419418
}
420-
421419
toCheck.RemoveAll(path => !File.Exists(path));
422420
paths.Clear();
423421
paths.AddRange(toCheck);
Collapse file

‎PluginCore/PluginCore/Resources/de_DE.resX‎

Copy file name to clipboardExpand all lines: PluginCore/PluginCore/Resources/de_DE.resX
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ Ansonsten kann Adobe Flash Professional auch zum Überprüfen der Syntax verwend
936936
<value>Haltepunkte löschen</value>
937937
</data>
938938
<data name="FlashDevelop.Label.CleanReopenList" xml:space="preserve">
939-
<value>Liste der &amp;zuletzt verwendeten Dateien aufräumen</value>
939+
<value>&amp;Remove Invalid Files</value>
940940
<comment>Added after 5.0.0</comment>
941941
</data>
942942
<data name="FlashDevelop.Label.ClearReopenList" xml:space="preserve">
@@ -1901,8 +1901,8 @@ Ansonsten kann Adobe Flash Professional auch zum Überprüfen der Syntax verwend
19011901
<value>&amp;Abbrechen</value>
19021902
</data>
19031903
<data name="ProjectManager.Label.CleanRecentProjects" xml:space="preserve">
1904-
<value>&amp;Clean Recent Projects List</value>
1905-
<comment>Liste der zuletzt benutzten Projekte &amp;aufräumen</comment>
1904+
<value>&amp;Remove Invalid Projects</value>
1905+
<comment>Added after 5.0.0</comment>
19061906
</data>
19071907
<data name="ProjectManager.Label.ClearRecentProjects" xml:space="preserve">
19081908
<value>Liste der zuletzt benutzten Projekte &amp;löschen</value>
Collapse file

‎PluginCore/PluginCore/Resources/en_US.resX‎

Copy file name to clipboardExpand all lines: PluginCore/PluginCore/Resources/en_US.resX
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ Alternatively, Adobe Flash Professional can also be used for syntax checking - p
918918
<value>Clear Breakpoints</value>
919919
</data>
920920
<data name="FlashDevelop.Label.CleanReopenList" xml:space="preserve">
921-
<value>&amp;Clean Recent Files List</value>
921+
<value>&amp;Remove Invalid Files</value>
922922
<comment>Added after 5.0.0</comment>
923923
</data>
924924
<data name="FlashDevelop.Label.ClearReopenList" xml:space="preserve">
@@ -1888,7 +1888,7 @@ Alternatively, Adobe Flash Professional can also be used for syntax checking - p
18881888
<value>&amp;Cancel</value>
18891889
</data>
18901890
<data name="ProjectManager.Label.CleanRecentProjects" xml:space="preserve">
1891-
<value>&amp;Clean Recent Projects List</value>
1891+
<value>&amp;Remove Invalid Projects</value>
18921892
<comment>Added after 5.0.0</comment>
18931893
</data>
18941894
<data name="ProjectManager.Label.ClearRecentProjects" xml:space="preserve">
Collapse file

‎PluginCore/PluginCore/Resources/eu_ES.resX‎

Copy file name to clipboardExpand all lines: PluginCore/PluginCore/Resources/eu_ES.resX
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ Alternatiba gisa, Adobe Flash Professional ere sintaxi egiaztapenerako erabil da
918918
<value>Eten-puntuak garbitu</value>
919919
</data>
920920
<data name="FlashDevelop.Label.CleanReopenList" xml:space="preserve">
921-
<value>&amp;Clean Recent Files List</value>
921+
<value>&amp;Remove Invalid Files</value>
922922
<comment>Added after 5.0.0</comment>
923923
</data>
924924
<data name="FlashDevelop.Label.ClearReopenList" xml:space="preserve">
@@ -1887,7 +1887,7 @@ Alternatiba gisa, Adobe Flash Professional ere sintaxi egiaztapenerako erabil da
18871887
<value>&amp;Ezeztatu</value>
18881888
</data>
18891889
<data name="ProjectManager.Label.CleanRecentProjects" xml:space="preserve">
1890-
<value>&amp;Clean Recent Projects List</value>
1890+
<value>&amp;Remove Invalid Projects</value>
18911891
<comment>Added after 5.0.0</comment>
18921892
</data>
18931893
<data name="ProjectManager.Label.ClearRecentProjects" xml:space="preserve">
Collapse file

‎PluginCore/PluginCore/Resources/ja_JP.resX‎

Copy file name to clipboardExpand all lines: PluginCore/PluginCore/Resources/ja_JP.resX
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@
922922
<value>ブレークポイントをクリア</value>
923923
</data>
924924
<data name="FlashDevelop.Label.CleanReopenList" xml:space="preserve">
925-
<value>&amp;Clean Recent Files List</value>
925+
<value>&amp;Remove Invalid Files</value>
926926
<comment>Added after 5.0.0</comment>
927927
</data>
928928
<data name="FlashDevelop.Label.ClearReopenList" xml:space="preserve">
@@ -1890,7 +1890,7 @@
18901890
<value>キャンセル</value>
18911891
</data>
18921892
<data name="ProjectManager.Label.CleanRecentProjects" xml:space="preserve">
1893-
<value>&amp;Clean Recent Projects List</value>
1893+
<value>&amp;Remove Invalid Projects</value>
18941894
<comment>Added after 5.0.0</comment>
18951895
</data>
18961896
<data name="ProjectManager.Label.ClearRecentProjects" xml:space="preserve">
Collapse file

‎PluginCore/PluginCore/Resources/zh_CN.resx‎

Copy file name to clipboardExpand all lines: PluginCore/PluginCore/Resources/zh_CN.resx
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@
918918
<value>清除断点</value>
919919
</data>
920920
<data name="FlashDevelop.Label.CleanReopenList" xml:space="preserve">
921-
<value>&amp;Clean Recent Files List</value>
921+
<value>&amp;Remove Invalid Files</value>
922922
<comment>Added after 5.0.0</comment>
923923
</data>
924924
<data name="FlashDevelop.Label.ClearReopenList" xml:space="preserve">
@@ -1888,7 +1888,7 @@
18881888
<value>取消(&amp;C)</value>
18891889
</data>
18901890
<data name="ProjectManager.Label.CleanRecentProjects" xml:space="preserve">
1891-
<value>&amp;Clean Recent Projects List</value>
1891+
<value>&amp;Remove Invalid Projects</value>
18921892
<comment>Added after 5.0.0</comment>
18931893
</data>
18941894
<data name="ProjectManager.Label.ClearRecentProjects" xml:space="preserve">

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.