diff options
| author | 2022-08-18 12:10:55 +0200 | |
|---|---|---|
| committer | 2022-08-18 12:10:55 +0200 | |
| commit | 1603c10bbab61b4a84380c8a9d5aa77536a4f1c7 (patch) | |
| tree | 36ee76291c8e877d7421641ae7a38570ff65f8ce /app/i18n | |
| parent | 4f111c5b305078a641d13ac41ce7d798e3cc19ce (diff) | |
XPath ability to define the UID manually (#4507)
* XPath ability to define the UID manually
* Fix error in i18n
Diffstat (limited to 'app/i18n')
| -rw-r--r-- | app/i18n/cz/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/de/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/en-us/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/en/sub.php | 6 | ||||
| -rwxr-xr-x | app/i18n/es/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/fr/sub.php | 4 | ||||
| -rw-r--r-- | app/i18n/he/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/it/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/ja/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/ko/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/nl/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/oc/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/pl/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/pt-br/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/ru/sub.php | 4 | ||||
| -rw-r--r-- | app/i18n/sk/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/tr/sub.php | 6 | ||||
| -rw-r--r-- | app/i18n/zh-cn/sub.php | 4 |
18 files changed, 87 insertions, 15 deletions
diff --git a/app/i18n/cz/sub.php b/app/i18n/cz/sub.php index 7867055c7..6cacf3e8b 100644 --- a/app/i18n/cz/sub.php +++ b/app/i18n/cz/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/de/sub.php b/app/i18n/de/sub.php index ff4f11ca3..c8a0c7961 100644 --- a/app/i18n/de/sub.php +++ b/app/i18n/de/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/en-us/sub.php b/app/i18n/en-us/sub.php index de5fd9340..648fdec9a 100644 --- a/app/i18n/en-us/sub.php +++ b/app/i18n/en-us/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // IGNORE 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // IGNORE ), - 'item_categories' => 'items tags', // IGNORE + 'item_categories' => 'item tags', // IGNORE 'item_content' => array( '_' => 'item content', // IGNORE 'help' => 'Example to take the full item: <code>.</code>', // IGNORE @@ -104,6 +104,10 @@ return array( '_' => 'item title', // IGNORE '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>', // IGNORE ), + 'item_uid' => array( + '_' => 'item unique ID', // IGNORE + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // IGNORE 'help' => 'Example: <code>descendant::a/@href</code>', // IGNORE 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>', diff --git a/app/i18n/es/sub.php b/app/i18n/es/sub.php index 90e853f9a..dcf72697f 100755 --- a/app/i18n/es/sub.php +++ b/app/i18n/es/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/fr/sub.php b/app/i18n/fr/sub.php index 379bd6296..3faf379c2 100644 --- a/app/i18n/fr/sub.php +++ b/app/i18n/fr/sub.php @@ -104,6 +104,10 @@ return array( '_' => 'titre de l’article', 'help' => 'Utiliser en particulier l’<a href="https://developer.mozilla.org/docs/Web/XPath/Axes" target="_blank">axe XPath</a> <code>descendant::</code> comme <code>descendant::h2</code>', ), + 'item_uid' => array( + '_' => 'identifiant unique de l’article', + 'help' => 'Optionnel. Exemple : <code>descendant::div/@data-uri</code>', + ), 'item_uri' => array( '_' => 'lien (URL) de l’article', 'help' => 'Exemple : <code>descendant::a/@href</code>', diff --git a/app/i18n/he/sub.php b/app/i18n/he/sub.php index bcb540e6b..0d9f2ea96 100644 --- a/app/i18n/he/sub.php +++ b/app/i18n/he/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/it/sub.php b/app/i18n/it/sub.php index 1a3875892..c9f4823f0 100644 --- a/app/i18n/it/sub.php +++ b/app/i18n/it/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/ja/sub.php b/app/i18n/ja/sub.php index 6ea8fc375..9973e5bec 100644 --- a/app/i18n/ja/sub.php +++ b/app/i18n/ja/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/ko/sub.php b/app/i18n/ko/sub.php index 77e72aa0f..edb97842b 100644 --- a/app/i18n/ko/sub.php +++ b/app/i18n/ko/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/nl/sub.php b/app/i18n/nl/sub.php index b5442ea0e..b8585bcbb 100644 --- a/app/i18n/nl/sub.php +++ b/app/i18n/nl/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/oc/sub.php b/app/i18n/oc/sub.php index 68f9e1f88..28b0de33b 100644 --- a/app/i18n/oc/sub.php +++ b/app/i18n/oc/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/pl/sub.php b/app/i18n/pl/sub.php index 07cc07286..603fe8f4a 100644 --- a/app/i18n/pl/sub.php +++ b/app/i18n/pl/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/pt-br/sub.php b/app/i18n/pt-br/sub.php index 87b9b635b..82ae085ef 100644 --- a/app/i18n/pt-br/sub.php +++ b/app/i18n/pt-br/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/ru/sub.php b/app/i18n/ru/sub.php index dc0cf8eda..9bc64f05d 100644 --- a/app/i18n/ru/sub.php +++ b/app/i18n/ru/sub.php @@ -104,6 +104,10 @@ return array( '_' => 'заголовка элемента', 'help' => 'Используйте, в частности, <a href="https://developer.mozilla.org/docs/Web/XPath/Axes" target="_blank">ось XPath</a> <code>descendant::</code>, наподобие <code>descendant::h2</code>', ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'ссылки элемента (URL)', 'help' => 'Пример: <code>descendant::a/@href</code>', diff --git a/app/i18n/sk/sub.php b/app/i18n/sk/sub.php index 6660ff573..58999e5f3 100644 --- a/app/i18n/sk/sub.php +++ b/app/i18n/sk/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/tr/sub.php b/app/i18n/tr/sub.php index 34169aac3..e0af10d12 100644 --- a/app/i18n/tr/sub.php +++ b/app/i18n/tr/sub.php @@ -87,7 +87,7 @@ return array( '_' => 'item author', // TODO 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO ), - 'item_categories' => 'items tags', // TODO + 'item_categories' => 'item tags', // TODO 'item_content' => array( '_' => 'item content', // TODO 'help' => 'Example to take the full item: <code>.</code>', // TODO @@ -104,6 +104,10 @@ return array( '_' => 'item title', // TODO '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>', // TODO ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => 'item link (URL)', // TODO 'help' => 'Example: <code>descendant::a/@href</code>', // TODO diff --git a/app/i18n/zh-cn/sub.php b/app/i18n/zh-cn/sub.php index 7ede19a3d..10211b99e 100644 --- a/app/i18n/zh-cn/sub.php +++ b/app/i18n/zh-cn/sub.php @@ -104,6 +104,10 @@ return array( '_' => '文章标题', 'help' => '特别是用 <a href="https://developer.mozilla.org/docs/Web/XPath/Axes" target="_blank">XPath 轴</a> <code>descendant::</code> 像 <code>descendant::h2</code>', ), + 'item_uid' => array( + '_' => 'item unique ID', // TODO + 'help' => 'Optional. Example: <code>descendant::div/@data-uri</code>', // TODO + ), 'item_uri' => array( '_' => '文章链接 (URL)', 'help' => '例: <code>descendant::a/@href</code>', |
