Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion chromium/_locales/de/messages.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"menu_blockHttpRequests": {
"message": "Block all HTTP requests"
"message": "Alle HTTP requests blockieren"
},
"about_title": {
"message": "Über HTTPS Everywhere"
Expand Down Expand Up @@ -121,6 +121,39 @@
},
"chrome_what_is_this_title": {
"message": "HTTPS-Everywhere-Webseite"
},
"menu_add_rule": {
"message": "Regel für diese Seite hinzufügen"
},
"about_add_new_rule": {
"message": "Eine Regel für diese Seite hinzufügen"
},
"menu_always_https_for_host": {
"message": "Für diese Seite HTTPS erzwingen"
},
"menu_host": {
"message": "Host:"
},
"menu_show_advanced": {
"message": "Erweiterte Optionen anzeigen"
},
"menu_hide_advanced": {
"message": "Erweiterte Optionen verstecken"
},
"menu_rule_name": {
"message": "Regel Name"
},
"menu_regex": {
"message": "Auslösende regex"
},
"menu_redirect_to": {
"message": "Umleiten zu"
},
"menu_add_new_rule": {
"message": "Neue Regel hinzufügen"
},
"status_cancel_button": {
"message": "Abbrechen"
}
}

33 changes: 33 additions & 0 deletions chromium/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,39 @@
},
"chrome_what_is_this_title": {
"message": "HTTPS Everywhere website"
},
"menu_add_rule": {
"message": "Add a rule for this site"
},
"about_add_new_rule": {
"message": "Add a new rule for this site"
},
"menu_always_https_for_host": {
"message": "Always use https for this host."
},
"menu_host": {
"message": "Host:"
},
"menu_show_advanced": {
"message": "Show advanced"
},
"menu_hide_advanced": {
"message": "Hide advanced"
},
"menu_rule_name": {
"message": "Rule name"
},
"menu_regex": {
"message": "Matching regex"
},
"menu_redirect_to": {
"message": "Redirect to"
},
"menu_add_new_rule": {
"message": "Add new rule"
},
"status_cancel_button": {
"message": "Cancel"
}
}

26 changes: 13 additions & 13 deletions chromium/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ <h1 i18n="about_ext_name"></h1>
<section id="HttpNowhere" class="options">
<input id="http-nowhere-checkbox" type="checkbox" value="httpNowhere"/>
<label i18n="menu_blockHttpRequests" for="http-nowhere-checkbox"
>Block all HTTP requests</label>
></label>
</section>
<section>
<a href="#" id="add-rule-link">Add a rule for this site</a>
<a href="#" id="add-rule-link" i18n="menu_add_rule"></a>
<div id="add-new-rule-div" style="display:none">
<h3> Add a new rule for this site</h3>
<p>Always use https for this host.
<label for="new-rule-host">Host:</label> <br><input size="50" id="new-rule-host" type="text" disabled><br>
<h3 i18n="about_add_new_rule"> </h3>
<p i18n="menu_always_https_for_host">
<label for="new-rule-host" i18n="menu_host"></label> <br><input size="50" id="new-rule-host" type="text" disabled><br>

<div id="new-rule-regular-text">
<p><a href="#" id="new-rule-show-advanced-link">Show advanced</a>
<p><a href="#" id="new-rule-show-advanced-link" i18n="menu_show_advanced"></a>
</div>
<div id="new-rule-advanced" style="display:none;">
<p><a href="#" id="new-rule-hide-advanced-link">Hide advanced</a>
<p><a href="#" id="new-rule-hide-advanced-link" i18n="menu_hide_advanced"></a>
<p>
<label for="new-rule-name">Rule name</label><br><input size="50" id="new-rule-name" type="text"><br>
<label for="new-rule-regex">Matching regex</label> <br><input size="50" id="new-rule-regex" type="text"><br>
<label for="new-rule-redirect">Redirect to</label> <br><input size="50" id="new-rule-redirect" type="text"><br>
<label for="new-rule-name" i18n="menu_rule_name"></label><br><input size="50" id="new-rule-name" type="text"><br>
<label for="new-rule-regex" i18n="menu_regex"></label> <br><input size="50" id="new-rule-regex" type="text"><br>
<label for="new-rule-redirect" i18n="menu_redirect_to"></label> <br><input size="50" id="new-rule-redirect" type="text"><br>
</div>

<button id="add-new-rule-button">Add new Rule</button><br>
<button id="cancel-new-rule">Cancel</button>
<button id="add-new-rule-button" i18n="menu_add_new_rule"></button><br>
<button id="cancel-new-rule" i18n="status_cancel_button"></button>
</div>
</section>
<section id="StableRules" class="rules">
Expand All @@ -49,7 +49,7 @@ <h3 i18n="chrome_experimental_rules"></h3>
<p class="description" i18n="chrome_experimental_rules_description"></p>
</section>
<footer>
<a id="whatIsThis" href="https://www.eff.org/https-everywhere" target="_blank" tabindex="-1" i18n="chrome_what_is_this">blah</a>
<a id="whatIsThis" href="https://www.eff.org/https-everywhere" target="_blank" tabindex="-1" i18n="chrome_what_is_this"></a>
<p><small>(Version: <span id="current-version"></span>)</small></p>
<!-- <a href="" title="HTTPS Everywhere Options">Options</a> -->
</footer>
Expand Down