搜尋¶
Searching for strings¶
使用布爾操作,括號或字段特定查找的高級查詢可用於查找所需的字串。
當沒有定義任何欄位時,查找發生在來源、翻譯和上下文字串。
Simple search¶
Any phrase typed into the search box is split into words. Strings containing all
of them are shown. To look for an exact phrase, put "the searchphrase" into
quotes (both single (') and double (") quotes will work): "this is a quoted
string" or 'another quoted string'.
欄位¶
source:TEXTSource string case-insensitive search.
target:TEXTTarget string case-insensitive search.
context:TEXTContext string case-insensitive search.
key:TEXTKey string case-insensitive search.
note:TEXTSource string description case-insensitive search.
location:TEXTLocation string case-insensitive search.
priority:NUMBERString priority.
id:NUMBERString unique identifier.
position:NUMBERString position in the translation file.
added:DATETIME將字串新增到Webleate時的時間戳。
state:TEXTSearch for string states (
approved,translated,needs-editing,empty,read-only).This field also supports Field operators, so searching for completed strings can be performed as
state:>=translated, searching for strings needing translation asstate:<translated.source_state:TEXTSearch for source string states, see above for more info.
pending:BOOLEAN掛在彎曲以沖洗到VCS。
has:TEXTSearch for string having attributes -
plural,context,suggestion,comment,check,dismissed-check,translation,variant,screenshot,flags,explanation,glossary,note,label,location.is:TEXTFilters string on a condition:
read-onlyorreadonlyRead-only strings, same as
state:read-only.approvedApproved strings, same as
state:approved.needs-editingorfuzzyNeeding editing strings, same as
state:needs-editing.translatedTranslated strings, same as
state:>translated.untranslatedUntranslated strings, same as
state:<translated.pendingPending strings not yet committed to the file (see 簡易送交).
language:TEXTString target language.
component:TEXTComponent slug or name case-insensitive search, see 組件標識串 and 組件名稱.
project:TEXTProject slug, see URL slug.
path:TEXTPath to the object to limit searching inside component, category, project, or translation.
changed_by:TEXT作者使用給定使用者名更改字串。
changed:DATETIMEString content was changed on date, supports Field operators.
change_time:DATETIMEString was changed on date, supports Field operators, unlike
changedthis includes event which don't change content and you can apply custom action filtering usingchange_action.change_action:TEXTFilters on change action, useful together with
change_time. Accepts English name of the change action, either quoted and with spaces or lowercase and spaces replaced by a hyphen. See Searching for changes for examples.source_changed:DATETIMESource string was changed on date, supports Field operators.
check:TEXTString has failing check, see 檢查和修復 for check identifiers.
dismissed_check:TEXTString has dismissed check, see 檢查和修復 for check identifiers.
comment:TEXTSearch in user comments.
resolved_comment:TEXTSearch in resolved comments.
comment_author:TEXTFilter by comment author.
suggestion:TEXTSearch in suggestions.
suggestion_author:TEXTFilter by suggestion author.
explanation:TEXT在解釋中搜尋。
label:TEXTSearch in labels.
screenshot:TEXTSearch in screenshots.
labels_count:NUMBERFilter by count of labels
Boolean operators¶
You can combine lookups using AND, OR, NOT and parentheses to
form complex queries.
The NOT operator has higher precedence than the AND operator; the
AND operator has higher precedence than the OR operator. You can add
parenthesis to define a precedence of your own.
Omitting the operator will make the query behave like the AND operator was
used.
|
Parenthesized expression to clearly show the precedence. |
|
The |
|
Query using an implicit |
Field operators¶
您可以為日期或數字搜尋指定運算符,範圍或部分查找:
state:>=translatedState is
translatedor better (approved).changed:2019Changed in year 2019.
changed:[2019-03-01 to 2019-04-01]在兩個給定的日期之間發生了變化。
position:[10 to 100]Strings with position between 10 and 100 (inclusive).
Exact operators¶
You can do an exact match query on different string fields using = operator. For example, to
search for all source strings exactly matching hello world, use: source:="hello world".
For searching single word expressions, you can skip quotes. For example, to search for all source strings
matching hello, you can use: source:=hello.
Searching for changes¶
在 4.4 版被加入.
Searching for history events can be done using change_action and
change_time operators.
例如,可以將標記為2018年編輯的字串輸入為 change_time:2018 AND change_action:marked-for-edit 或 change_time:2018 AND change_action:"Marked for edit"。
常規表達式¶
任何已接受的內文,您也可以指定使用常規表示法如 r"regexp" 。
例如,要搜尋包含 2 和 5 之間的任何數字的所有來源字串,請使用 source:r"[2-5]" 。
提示
The regular expressions are evaluated by the database backend and might use different extensions, please consult the database documentation below for more details.
PostgreSQL Regular Expressions Details (this is the default database engine for Weblate)
Predefined queries¶
您可以在搜尋頁面上選擇預定義查詢,這允許您快速存取最常見的搜尋:
Ordering the results¶
根據您的需要,有許多選擇字串:
Searching for users¶
在 4.18 版被加入.
The user browsing has similar search abilities:
username:TEXTSearch in usernames.
full_name:TEXTSearch in full names.
language:TEXTUser configured translation language (see 想翻譯成哪些語言).
joined:DATETIMEString content was changed on date, supports Field operators.
translates:TEXTUser has contributed to a given language.
You might want to limit contribution time by
change_time, for examplechange_time:>"90 days ago".contributes:TEXTUser has contributed to a given project or component.
You might want to limit contribution time by
change_time, for examplechange_time:>"90 days ago".change_time:DATETIMESame as in Searching for strings.
change_action:TEXTSame as in Searching for strings.
Additional lookups are available in the 管理介面:
is:botSearch for bots (used for project scoped tokens).
is:activeSearch for active users.
email:TEXTSearch by e-mail.
Fuzzy values for DATETIME fields¶
Instead of using DATETIME values like MM-DD-YYYY, a string containing an adverb
of time like yesterday, last month, and 2 days ago can
be used as values in the DATETIME fields. Only English phrases are supported
here.
範例:
changed:>="2 weeks ago"Returns strings that are changed 2 weeks ago from the current date and time.
changed:>=yesterdayReturns strings that are changed starting yesterday.