Skip to content

Commit

Permalink
Fix a grammar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmostellar committed Apr 18, 2024
1 parent f582117 commit 12cd16d
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Binary file modified images/example2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/lang/locale/_.json
Expand Up @@ -14,7 +14,7 @@
"Please enter a valid number.\nIt should be a whole number.": ""
},
"optionWarnings": {
"Gap values must be a whole number and they need to be at least 0.": ""
"Gap value must be a whole number and it needs to be at least 0.": ""
},
"placeholders": {
"(Default)": ""
Expand Down
2 changes: 1 addition & 1 deletion src/lang/locale/de.json
Expand Up @@ -14,7 +14,7 @@
"Please enter a valid number.\nIt should be a whole number.": ""
},
"optionWarnings": {
"Gap values must be a whole number and they need to be at least 0.": ""
"Gap value must be a whole number and it needs to be at least 0.": ""
},
"placeholders": {
"(Default)": ""
Expand Down
2 changes: 1 addition & 1 deletion src/lang/locale/en.json
Expand Up @@ -14,7 +14,7 @@
"Please enter a valid number.\nIt should be a whole number.": "Please enter a valid number.\nIt should be a whole number."
},
"optionWarnings": {
"Gap values must be a whole number and they need to be at least 0.": "Gap values must be a whole number and they need to be at least 0."
"Gap value must be a whole number and it needs to be at least 0.": "Gap value must be a whole number and it needs to be at least 0."
},
"placeholders": {
"(Default)": "(Default)"
Expand Down
2 changes: 1 addition & 1 deletion src/lang/locale/hu.json
Expand Up @@ -14,7 +14,7 @@
"Please enter a valid number.\nIt should be a whole number.": "Kérlek egy megfelelő számot írjál be.\nEgész szám legyen."
},
"optionWarnings": {
"Gap values must be a whole number and they need to be at least 0.": ""
"Gap value must be a whole number and it needs to be at least 0.": ""
},
"placeholders": {
"(Default)": ""
Expand Down
2 changes: 1 addition & 1 deletion src/lang/locale/ko.json
Expand Up @@ -14,7 +14,7 @@
"Please enter a valid number.\nIt should be a whole number.": "유효한 숫자를 입력해주세요.\n자연수만 입력할 수 있습니다."
},
"optionWarnings": {
"Gap values must be a whole number and they need to be at least 0.": "여백 옵션의 값은 반드시 자연수이고 0 이상이어야 합니다."
"Gap value must be a whole number and it needs to be at least 0.": "여백 옵션의 값은 반드시 자연수이고 0 이상이어야 합니다."
},
"placeholders": {
"(Default)": "(기본값)"
Expand Down
2 changes: 1 addition & 1 deletion src/obsidian/settings/settingTab.ts
Expand Up @@ -63,7 +63,7 @@ export class FormattoSettingTab extends PluginSettingTab {
div.innerHTML = `<div style="color: var(--text-accent)">
${getLocale(
LOCALE_CATEGORY.OPTION_WARNINGS,
"Gap values must be a whole number and they need to be at least 0."
"Gap value must be a whole number and it needs to be at least 0."
)}
</div>`;
div.className = "setting-item setting-item-description";
Expand Down

0 comments on commit 12cd16d

Please sign in to comment.