-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
60 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-03-04 23:22+0000\n" | ||
"POT-Creation-Date: 2024-03-06 13:34+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -28,8 +28,7 @@ msgstr "" | |
msgid "Homepage" | ||
msgstr "Domů" | ||
|
||
#, javascript-format | ||
msgid "Could not create site: %s" | ||
msgid "Could not update site: {err}" | ||
msgstr "" | ||
|
||
msgid "Create Site" | ||
|
@@ -38,8 +37,7 @@ msgstr "" | |
msgid "Available websites" | ||
msgstr "" | ||
|
||
#, javascript-format | ||
msgid "Could not update site: %s" | ||
msgid "No sites yet" | ||
msgstr "" | ||
|
||
msgid "Site name" | ||
|
@@ -57,7 +55,7 @@ msgstr "" | |
msgid "Available regions" | ||
msgstr "" | ||
|
||
msgid "Cancel" | ||
msgid "Close" | ||
msgstr "" | ||
|
||
msgid "Saving" | ||
|
@@ -66,8 +64,5 @@ msgstr "" | |
msgid "Save changes" | ||
msgstr "" | ||
|
||
msgid "Edit title" | ||
msgstr "" | ||
|
||
msgid "Preview" | ||
msgstr "Náhled" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export const _ = window.gettext; | ||
export const gettext = window.gettext; | ||
export const interpolate = window.interpolate; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
import '../sass/project.scss'; | ||
import "../sass/project.scss"; | ||
|
||
String.prototype.supplant = function (o) { | ||
return this.replace(/{([^{}]*)}/g, (a, b) => { | ||
const r = o[b]; | ||
return typeof r === "string" || typeof r === "number" ? r : a; | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters