]> git.wh0rd.org - tt-rss.git/commitdiff
Merge branch 'master' of git.fakecake.org:tt-rss
authorAndrew Dolgov <noreply@fakecake.org>
Mon, 20 Nov 2017 05:48:28 +0000 (08:48 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Mon, 20 Nov 2017 05:48:28 +0000 (08:48 +0300)
include/functions.php
locale/de_DE/LC_MESSAGES/messages.mo
locale/de_DE/LC_MESSAGES/messages.po
plugins/af_comics/init.php
prefs.php

index f883a12e7a4752608b20867d14ac2de52df96205..4265692ec05d783a524e48357f4f73ce946c60ee 100644 (file)
                        'caption', 'cite', 'center', 'code', 'col', 'colgroup',
                        'data', 'dd', 'del', 'details', 'description', 'dfn', 'div', 'dl', 'font',
                        'dt', 'em', 'footer', 'figure', 'figcaption',
-                       'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'html', 'i',
+                       'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'hr', 'html', 'i',
                        'img', 'ins', 'kbd', 'li', 'main', 'mark', 'nav', 'noscript',
                        'ol', 'p', 'pre', 'q', 'ruby', 'rp', 'rt', 's', 'samp', 'section',
                        'small', 'source', 'span', 'strike', 'strong', 'sub', 'summary',
index 7a307dad8613110036e37886d3979578390aa377..b29dd83224b6d90812c2048c3a006087af3fa124 100644 (file)
Binary files a/locale/de_DE/LC_MESSAGES/messages.mo and b/locale/de_DE/LC_MESSAGES/messages.mo differ
index fe549e93d3f9cdbd056e2b967c5cb3ff25793208..2c2f11881b4ab5b15938763f9569e863ef549154 100644 (file)
@@ -3371,7 +3371,7 @@ msgstr "Keine Profile ausgewählt."
 
 #: js/prefs.js:1353 js/prefs.js:1406
 msgid "Activate selected profile?"
-msgstr "Ausgewählte Profile entfernen?"
+msgstr "Ausgewählte Profile aktivieren?"
 
 #: js/prefs.js:1370 js/prefs.js:1422
 msgid "Please choose a profile to activate."
index 6bd3c23e202eebc6dfeb677730b47f584dc54de9..54054399ef63271af6a76c2466b1f80daa64f882 100644 (file)
@@ -65,7 +65,7 @@ class Af_Comics extends Plugin {
                }
                print "</ul>";
 
-               print "<p>".__('GoComics requires a specific URL to workaround their lack of feed support: <code>http://feeds.feedburner.com/uclick/<em>comic_name</em></code> (e.g. <code>http://www.gocomics.com/garfield</code> uses <code>http://feeds.feedburner.com/uclick/garfield</code>).')."</p>";
+               print "<p>".__("To subscribe to GoComics use the comic's regular web page as the feed URL (e.g. for the <em>Garfield</em> comic use <code>http://www.gocomics.com/garfield</code>).")."</p>";
 
                print "<p>".__('Drop any updated filters into <code>filters.local</code> in plugin directory.')."</p>";
 
@@ -89,7 +89,7 @@ class Af_Comics extends Plugin {
                if ($auth_login || $auth_pass)
                        return $feed_data;
 
-               if (preg_match('#^https?://feeds.feedburner.com/uclick/([-a-z]+)#', $fetch_url, $comic)) {
+               if (preg_match('#^https?://(?:feeds\.feedburner\.com/uclick|www\.gocomics\.com)/([-a-z0-9]+)$#i', $fetch_url, $comic)) {
                        $site_url = 'http://www.gocomics.com/' . $comic[1];
 
                        $article_link = $site_url . date('/Y/m/d');
index b1cdb0b49ab4808833911209d620ac0b5567060c..82f23f583ab4bfc90f51ea9cf053555cf09f1ac6 100644 (file)
--- a/prefs.php
+++ b/prefs.php
@@ -31,6 +31,7 @@
 <html>
 <head>
        <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
+    <meta name="viewport" content="initial-scale=1,width=device-width" />
 
        <script type="text/javascript">
                var __ttrss_version = "<?php echo VERSION ?>"