Skip to content

Commit

Permalink
Language Improvements
Browse files Browse the repository at this point in the history
- Made dot behavior more consistent by removing ones at the end of strings;
- Improved Russian translation;
- Changed default bookmarks file name that is shown when exporting bookmarks from *bookmark.txt* to *bookmarks.json*.
  • Loading branch information
Myron472 committed Oct 5, 2024
1 parent 9e82871 commit 4159a4c
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 107 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class DialogManager(
val intent = Intent(Intent.ACTION_CREATE_DOCUMENT)
intent.addCategory(Intent.CATEGORY_OPENABLE)
intent.type = Constants.MIME_TYPE_TEXT
intent.putExtra(Intent.EXTRA_TITLE, "bookmark.txt")
intent.putExtra(Intent.EXTRA_TITLE, "bookmarks.json")
activity.startActivityForResult(intent, EXPORT_BOOKMARKS_REQUEST_CODE)
}

Expand Down
Loading

0 comments on commit 4159a4c

Please sign in to comment.