summaryrefslogtreecommitdiff
path: root/js/CommonDialogs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-03 14:10:18 +0300
committerAndrew Dolgov <[email protected]>2021-03-03 14:10:18 +0300
commit75e659ba65d30dec4b8debac01a3b65505eae711 (patch)
tree10adbe3a56b15d37e631ef7877295eaf4f0adeac /js/CommonDialogs.js
parent0730128a97a46054099b59554e891cee99829eaa (diff)
reduce Amount of Caps Used in Multiple Dialogs
Diffstat (limited to 'js/CommonDialogs.js')
-rw-r--r--js/CommonDialogs.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/CommonDialogs.js b/js/CommonDialogs.js
index 321ddf6d3..a7e793b9c 100644
--- a/js/CommonDialogs.js
+++ b/js/CommonDialogs.js
@@ -16,7 +16,7 @@ const CommonDialogs = {
{op: "feeds", method: "subscribeToFeed"},
(reply) => {
const dialog = new fox.SingleUseDialog({
- title: __("Subscribe to Feed"),
+ title: __("Subscribe to feed"),
content: `
<form onsubmit='return false'>
@@ -333,7 +333,7 @@ const CommonDialogs = {
const dialog = new fox.SingleUseDialog({
id: "feedEditDlg",
- title: __("Edit Feed"),
+ title: __("Edit feed"),
feed_title: "",
unsubscribe: function() {
if (confirm(__("Unsubscribe from %s?").replace("%s", this.feed_title))) {
@@ -473,7 +473,7 @@ const CommonDialogs = {
<section>
<fieldset>
<input dojoType='dijit.form.ValidationTextBox' required='1'
- placeHolder="${__("Feed Title")}"
+ placeHolder="${__("Feed title")}"
style='font-size : 16px; width: 500px' name='title' value="${App.escapeHtml(feed.title)}">
</fieldset>