Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 26a6133

Browse files
Corne DorrestijnCorne Dorrestijn
authored andcommitted
Fixed formatting problem and removed unused code
1 parent 38ca366 commit 26a6133

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/nls/root/strings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ define({
113113
"SEARCH_REGEXP_INFO" : "Use /re/ syntax for regexp search",
114114
"FIND_RESULT_COUNT" : "{0} results",
115115
"FIND_RESULT_COUNT_SINGLE" : "1 result",
116-
"FIND_NO_RESULTS" : "No results",
116+
"FIND_NO_RESULTS" : "No results",
117117
"WITH" : "With",
118118
"BUTTON_YES" : "Yes",
119119
"BUTTON_NO" : "No",

src/search/FindReplace.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,9 @@ define(function (require, exports, module) {
242242
}
243243

244244
if (resultCount === 0) {
245-
$("#find-counter").text(StringUtils.format(Strings.FIND_NO_RESULTS));
245+
$("#find-counter").text(Strings.FIND_NO_RESULTS);
246246
} else if (resultCount === 1) {
247-
$("#find-counter").text(StringUtils.format(Strings.FIND_RESULT_COUNT_SINGLE));
247+
$("#find-counter").text(Strings.FIND_RESULT_COUNT_SINGLE);
248248
} else {
249249
$("#find-counter").text(StringUtils.format(Strings.FIND_RESULT_COUNT, resultCount));
250250
}

0 commit comments

Comments
 (0)