Skip to content

Commit

Permalink
Merge pull request #980 from kiwix/renameFilters
Browse files Browse the repository at this point in the history
Rename "All files" to "Online files"
  • Loading branch information
kelson42 authored Aug 9, 2023
2 parents 5f349cb + 1eb87c5 commit eda0555
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"kiwix-server-running-message":"The Kiwix Server is running and can be accessed in the local network at:",
"kiwix-server-description":"Starting a server allows other computers in the local network to access your Kiwix library with a standard web browser.",
"fullscreen-notification":"You are now in full screen mode. Press ESC to quit!",
"all-files":"All Files",
"online-files":"Online Files",
"local-files":"Local Files",
"browse-by-category":"Browse By Category",
"browse-by-language":"Browse By Language",
Expand Down
2 changes: 1 addition & 1 deletion src/contentmanagerside.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ContentManagerSide::ContentManagerSide(QWidget *parent) :
checked ?"*{font-weight: bold}" : "");});
mp_ui->localFileButton->setStyleSheet("*{font-weight: bold}");

mp_ui->allFileButton->setText(gt("all-files"));
mp_ui->allFileButton->setText(gt("online-files"));
mp_ui->localFileButton ->setText(gt("local-files"));
mp_ui->languageButton->setText(gt("browse-by-language"));
mp_ui->categoryButton->setText(gt("browse-by-category"));
Expand Down

0 comments on commit eda0555

Please sign in to comment.