diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-11-08 00:04:02 +0100 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-11-08 00:04:02 +0100 |
commit | 2b0b03eebc1a33a24cdff7adb46b2fa9a29090c0 (patch) | |
tree | 6c561c22411578c6f623060996447fdbeb4229d7 /mod/ffsapi.php | |
parent | 44fa4d10813b2909fb7b5aa1f904784294568682 (diff) | |
download | volse-hubzilla-2b0b03eebc1a33a24cdff7adb46b2fa9a29090c0.tar.gz volse-hubzilla-2b0b03eebc1a33a24cdff7adb46b2fa9a29090c0.tar.bz2 volse-hubzilla-2b0b03eebc1a33a24cdff7adb46b2fa9a29090c0.zip |
Fix ffsapi for non-English languages (or better when 's was used in the strings) - Update nl+es
Diffstat (limited to 'mod/ffsapi.php')
-rw-r--r-- | mod/ffsapi.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mod/ffsapi.php b/mod/ffsapi.php index f4033e63b..7b7922b0c 100644 --- a/mod/ffsapi.php +++ b/mod/ffsapi.php @@ -5,10 +5,10 @@ function ffsapi_content(&$a) { $baseurl = z_root(); $name = get_config('system','sitename'); -$description = t('Share content from Firefox to $Projectname'); -$author = 'Mike Macgirvin'; -$homepage = 'http://hubzilla.org'; -$activate = t('Activate the Firefox $Projectname provider'); +$description = t("Share content from Firefox to $Projectname"); +$author = "Mike Macgirvin"; +$homepage = "http://hubzilla.org"; +$activate = t("Activate the Firefox $Projectname provider"); $s = <<< EOT @@ -40,9 +40,9 @@ var data = { "unmarkedIcon": baseurl+"/images/hz-bookmark-32.png", // should be available for display purposes - "description": '$description', - "author": '$author', - "homepageURL": '$homepage', + "description": "$description", + "author": "$author", + "homepageURL": "$homepage", // optional "version": "1.0" |