1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 21:15:55 +00:00

reduce Amount of Caps Used in Multiple Dialogs

This commit is contained in:
Andrew Dolgov
2021-03-03 14:10:18 +03:00
parent 0730128a97
commit 75e659ba65
7 changed files with 11 additions and 11 deletions

View File

@@ -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>