Skip to content

Commit

Permalink
Renamed application_config.ini to config.ini, renamed application_sta…
Browse files Browse the repository at this point in the history
…te.ini to state.ini
  • Loading branch information
wudicgi committed Jun 22, 2020
1 parent a11b93d commit 39af9f8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DataStructure/ApplicationConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class ApplicationConfig

#endregion

private const string _INI_FILE_NAME = "application_config.ini";
private const string _INI_FILE_NAME = "config.ini";

public Dictionary<string, ScriptInterpreterItem> ScriptInterpreters = new Dictionary<string, ScriptInterpreterItem>();

Expand Down
2 changes: 1 addition & 1 deletion DataStructure/ApplicationState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class ApplicationState

#endregion

private const string _INI_FILE_NAME = "application_state.ini";
private const string _INI_FILE_NAME = "state.ini";

public static ApplicationState LoadFromFile()
{
Expand Down
2 changes: 1 addition & 1 deletion FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ private void MenuItemFileExit_Click(object sender, EventArgs e)
private void MenuItemToolsOptions_Click(object sender, EventArgs e)
{
MessageBox.Show(
I18n._("Graphical interface is not implemented yet.\nPlease modify the application_config.ini file manually to set options.")
I18n._("Graphical interface is not implemented yet.\nPlease modify the config.ini file manually to set options.")
.Replace("\n", Environment.NewLine),
I18n._("Clipboard Auto Processor"),
MessageBoxButtons.OK,
Expand Down
File renamed without changes.
Binary file modified locale/zh_CN/message.mo
Binary file not shown.
8 changes: 4 additions & 4 deletions locale/zh_CN/message.po
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: ClipboardAutoProcessor\n"
"POT-Creation-Date: 2020-06-15 22:50+0800\n"
"PO-Revision-Date: 2020-06-15 22:50+0800\n"
"POT-Creation-Date: 2020-06-22 23:01+0800\n"
"PO-Revision-Date: 2020-06-22 23:01+0800\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: zh_CN\n"
Expand Down Expand Up @@ -115,10 +115,10 @@ msgstr ">"
#: FormMain.cs:502
msgid ""
"Graphical interface is not implemented yet.\n"
"Please modify the application_config.ini file manually to set options."
"Please modify the config.ini file manually to set options."
msgstr ""
"图形界面尚未实现。\n"
"请手动修改 application_config.ini 文件设置选项。"
"请手动修改 config.ini 文件设置选项。"

#: FormMain.cs:545
msgid "Save as file"
Expand Down

0 comments on commit 39af9f8

Please sign in to comment.