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
/** | |
* Generates an ICS file containing free/busy information from your Google Calendar | |
* and saves it to Google Drive. | |
*/ | |
function generateFreeBusyICS() { | |
// Configuration | |
var calendarId = 'primary'; // Calendar ID to read events from | |
var fileName = 'busy.ics'; // Name of the ICS file to be saved in Google Drive | |
var eventTitle = 'Busy'; // Title for the events in the ICS file | |
var organizationName = 'Acme Corporation'; // Name for the PRODID property |
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
"Pending payment" (pending) = "Zahlung ausstehend" | |
"Processing" (processing) = "In Bearbeitung" | |
"On hold" (on-hold) = "In Wartestellung" | |
"Completed" (completed) = "Abgeschlossen" ("Fertiggestellt" in some places for Swiss German) | |
"Cancelled" (cancelled) = "Storniert/Abgebrochen" | |
"Refunded" (refunded) = "Rückerstattet" | |
"Failed" (failed) = "Fehlgeschlagen" |
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
`siteurl` = WordPress Address (URL) = WordPress-Adresse (URL) (German) -> URL | |
`home` = Site Address (URL) = Website-Adresse (URL) (German) -> URL to WordPress core files | |
See https://codex.wordpress.org/Changing_The_Site_URL |
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
.gallery-item { | |
display: inline-block; | |
text-align: left; | |
vertical-align: top; | |
margin: 0 0 1.5em; | |
padding: 0 1em 0 0; | |
@media ( min-width: 30em ) { | |
max-width: 25%; | |
} |