1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00

i18n strings

Pods completed
This commit is contained in:
McMatts 2022-03-04 13:46:22 -05:00
parent 38c9a94a9c
commit 073ef81e80
2 changed files with 27 additions and 17 deletions

View file

@ -32,47 +32,47 @@
{{#if (eq appMeta.storageProvider constants.StoreProvider.MySQL)}}
<div class="syntax">
<div class="example">apple banana</div>
<div class="explain">Show results that contain at least one of the two words</div>
<div class="explain">{{localize 'search_example1'}}</div>
<div class="example">+apple +banana</div>
<div class="explain">Show results that contain both words</div>
<div class="explain">{{localize 'search_example2'}}</div>
<div class="example">+apple macintosh</div>
<div class="explain">Show results that contain the word "apple", but rank rows higher if they also contain "macintosh"</div>
<div class="explain">{{localize 'search_example3'}}</div>
<div class="example">+apple -macintosh</div>
<div class="explain">Show results that contain the word "apple" but not "macintosh"</div>
<div class="explain">{{localize 'search_example4'}}</div>
<div class="example">+apple +(&gt;turnover &lt;strudel)</div>
<div class="explain">Show results that contain the words "apple" and "turnover", or "apple" and "strudel" (in any order), but rank "apple turnover" higher than "apple strudel"</div>
<div class="explain">{{localize 'search_example5'}}</div>
<div class="example">apple*</div>
<div class="explain">Show results that contain words such as "apple", "apples", "applesauce", or "applet"</div>
<div class="explain">{{localize 'search_example6'}}</div>
<div class="example">"some words"</div>
<div class="explain">Show results that contain the exact phrase "some words" (for example, rows that contain "some words of wisdom" but not "some noise words")</div>
<div class="explain">{{localize 'search_example7'}}</div>
</div>
{{/if}}
{{#if (eq appMeta.storageProvider constants.StoreProvider.PostgreSQL)}}
<div class="syntax">
<div class="example">apple | banana</div>
<div class="explain">Show results that contain either word</div>
<div class="explain">{{localize 'search_example8'}}</div>
<div class="example">apple & banana</div>
<div class="explain">Show results that contain both words</div>
<div class="explain">{{localize 'search_example2'}}</div>
<div class="example">apple !macintosh</div>
<div class="explain">Show results that contain the word "apple" but not "macintosh"</div>
<div class="explain">{{localize 'search_example4'}}</div>
<div class="example">google & (apple | microsoft) & !ibm</div>
<div class="explain">Show results that have "google", either "apple" or "microsoft" but not "ibm"</div>
<div class="explain">{{localize 'search_example9'}}</div>
<div class="example">apple:*</div>
<div class="explain">Show results that contain words that start with "apple", such as "applesauce" or "applet"</div>
<div class="explain">{{localize 'search_example10'}}</div>
</div>
{{/if}}
{{#if (eq appMeta.storageProvider constants.StoreProvider.SQLServer)}}
<div class="syntax">
<div class="example">apple OR banana</div>
<div class="explain">Show results that contain either word</div>
<div class="explain">{{localize 'search_example8'}}</div>
<div class="example">apple AND banana</div>
<div class="explain">Show results that contain both words</div>
<div class="explain">{{localize 'search_example2'}}</div>
<div class="example">apple AND NOT macintosh</div>
<div class="explain">Show results that contain the word "apple" but not "macintosh"</div>
<div class="explain">{{localize 'search_example4'}}</div>
<div class="example">"apple*"</div>
<div class="explain">Show results that contain words such as "apple", "apples", "applesauce", or "applet"</div>
<div class="explain">{{localize 'search_example6'}}</div>
<div class="example">"some words"</div>
<div class="explain">Show results that contain the exact phrase "some words" (for example, rows that contain "some words of wisdom" but not "some noise words")</div>
<div class="explain">{{localize 'search_example7'}}</div>
</div>
{{/if}}
</div>

View file

@ -144,6 +144,16 @@
"search_attachment_name": "Attachment name",
"search_example_title": "Query examples",
"search_explain": "Find content using keywords and operators",
"search_example1": "Show results that contain at least one of the two words",
"search_example2": "Show results that contain both words",
"search_example3": "Show results that contain the word \"apple\", but rank rows higher if they also contain \"macintosh\"",
"search_example4": "Show results that contain the word \"apple\" but not \"macintosh\"",
"search_example5": "Show results that contain the words \"apple\" and \"turnover\", or \"apple\" and \"strudel\" (in any order), but rank \"apple turnover\" higher than \"apple strudel\"",
"search_example6": "Show results that contain words such as \"apple\", \"apples\", \"applesauce\", or \"applet\"",
"search_example7": "Show results that contain the exact phrase \"some words\" (for example, rows that contain \"some words of wisdom\" but not \"some noise words\")",
"search_example8": "Show results that contain either word",
"search_example9": "Show results that have \"google\", either \"apple\" or \"microsoft\" but not \"ibm\"",
"search_example10": "Show results that contain words that start with \"apple\", such as \"applesauce\" or \"applet\"",
"backup_explain1": "Documize Community is a multi-tenanted application enabling both 'tech.mycompany.com' and 'sales.mycompany.com' to run using the same executable/database. As a Documize Community Global Administrator, you will be performing a complete system-wide backup across all tenants. The Documize Community Tenant Administrator can login to perform a tenant-level backup (e.g. marketing.mycompany.com).",
"backup_explain2": "Documize Community is a multi-tenanted application enabling both 'tech.mycompany.com' and 'sales.mycompany.com' to run using the same executable/database. A Documize Community Global Administrator, you will be performing a complete system-wide backup across all tenants. As a Documize Community Tenant Administrator you can perform a tenant-level backup (e.g. marketing.mycompany.com).",