-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50a5e3a
commit 3a07fee
Showing
6 changed files
with
35 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
mlogwatcher.setting.title=MlogWatcher Setting | ||
mlogwatcher.setting.mlogLabel=current mlog target path | ||
mlogwatcher.setting.mlogSelectButton=Change watcher target | ||
mlogwatcher.setting.fileChooserTitle=select target file to watch changes | ||
mlogwatcher.setting.extensionInputLabel=file extension to search: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
mlogwatcher.setting.title=MlogWatcher 설정 | ||
mlogwatcher.setting.mlogLabel=현재 mlog 대상 경로 | ||
mlogwatcher.setting.mlogSelectButton=mlog 대상 경로 바꾸기 | ||
mlogwatcher.setting.fileChooserTitle=변경을 지켜볼 대상 파일을 선택하세요 | ||
mlogwatcher.setting.extensionInputLabel=검색할 파일 확장자 이름: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package mlogwatcher; | ||
|
||
public class Constants { | ||
static class Bundles { | ||
public static final String settingTitle = "@mlogwatcher.setting.title"; | ||
public static final String settingMlogPathLabel = "@mlogwatcher.setting.mlogLabel"; | ||
public static final String settingMlogSelectButton = "@mlogwatcher.setting.mlogSelectButton"; | ||
public static final String settingFileChooserTitle = "@mlogwatcher.setting.fileChooserTitle"; | ||
public static final String settingExtensionInputLabel = "@mlogwatcher.setting.extensionInputLabel"; | ||
} | ||
|
||
static class Settings { | ||
public static final String mlogPath = "mlogwatcher-mlog-path"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters