Addon WindowsPhonePush

Addon serves 3 tasks: 1) deliver settings in json format 2) update
settings with the device URL 3) cron-hook to regularly check and push
new entries
This commit is contained in:
gerhard6380 2014-10-17 13:32:34 +02:00
parent ccbcd2ab16
commit 1c8eba5ea2
4 changed files with 552 additions and 0 deletions

View file

@ -0,0 +1,30 @@
# ADDON windowsphonepush
# Copyright (C)
# This file is distributed under the same license as the Friendica windowsphonepush addon package.
#
#
# Translators:
# Gerhard Seeber <gerhard@seeber.at>, 2014
msgid ""
msgstr ""
#: windowsphonepush.php:85
msgid "WindowsPhonePush settings updated."
msgstr "WindowsPhonePush Einstellungen aktualisiert"
#: geonames.php:114
msgid "WindowsPhonePush Settings"
msgstr "WindowsPhonePush Einstellungen"
#: geonames.php:117
msgid "Enable WindowsPhonePush Plugin"
msgstr "WindowsPhonePush Plugin aktivieren"
#: windowspushphone.php: 122
msgid "Push text of new item"
msgstr "Sende Text aus neuem Eintrag"
#: geonames.php:127
msgid "Save Settings"
msgstr "Einstellungen speichern"

View file

@ -0,0 +1,13 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["WindowsPhonePush settings updated."] = "WindowsPhonePush Einstellungen aktualisiert";
$a->strings["WindowsPhonePush Settings"] = "WindowsPhonePush Einstellungen";
$a->strings["Enable WindowsPhonePush Plugin"] = "WindowsPhonePush Plugin aktivieren";
$a->strings["Push text of new item"] = "Sende Text aus neuem Eintrag";
$a->strings["Save Settings"] = "Einstellungen speichern";