aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/i18n/en/sub.php
diff options
context:
space:
mode:
authorAlexandre Alapetite <alexandre@alapetite.fr>2022-08-18 12:10:55 +0200
committerGitHub <noreply@github.com>2022-08-18 12:10:55 +0200
commit1603c10bbab61b4a84380c8a9d5aa77536a4f1c7 (patch)
tree36ee76291c8e877d7421641ae7a38570ff65f8ce /app/i18n/en/sub.php
parent4f111c5b305078a641d13ac41ce7d798e3cc19ce (diff)
downloadfreshrss-1603c10bbab61b4a84380c8a9d5aa77536a4f1c7.tar.gz
freshrss-1603c10bbab61b4a84380c8a9d5aa77536a4f1c7.zip
XPath ability to define the UID manually (#4507)
* XPath ability to define the UID manually * Fix error in i18n
Diffstat (limited to 'app/i18n/en/sub.php')
-rw-r--r--app/i18n/en/sub.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/i18n/en/sub.php b/app/i18n/en/sub.php
index 9cc9c61bf..202d89b3c 100644
--- a/app/i18n/en/sub.php
+++ b/app/i18n/en/sub.php
@@ -87,7 +87,7 @@ return array(
'_' => 'item author',
'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>',
),
- 'item_categories' => 'items tags',
+ 'item_categories' => 'item tags',
'item_content' => array(
'_' => 'item content',
'help' => 'Example to take the full item: <code>.</code>',
@@ -104,6 +104,10 @@ return array(
'_' => 'item title',
'help' => 'Use in particular the <a href="https://developer.mozilla.org/docs/Web/XPath/Axes" target="_blank">XPath axis</a> <code>descendant::</code> like <code>descendant::h2</code>',
),
+ 'item_uid' => array(
+ '_' => 'item unique ID', // TODO
+ 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO
+ ),
'item_uri' => array(
'_' => 'item link (URL)',
'help' => 'Example: <code>descendant::a/@href</code>',