You can perform a search for TM entries by selecting a TM and then clicking the Search button.
Maximum Number of Hits value limits the number of entries returned.
fox in socks on Knox on box, potential terms that can match include
fox in socks,
socks on Knox and
socks on Knox on box. This search mode only supports searches for whole words. It takes advantage of stemming, if set up, and returns results equivalent to doing a translation memory lookup from a segment in the Browser Workbench. Segment Leverage searches are only guaranteed to find matches if enough context is supplied (typically 3 words). For example, searching for a single word only finds matches in short segments but does not exhaustively find matches, because not enough word context was provided.
Wildcard search ("*") only works in
Standard search. It does not work in
Segment Leverage search.
The standard and segment leverage translation memory search options are focused on finding exact and fuzzy matches, for the purpose of providing a translation for a complete segment. The concordance search is a secondary type search that attempts to find TM entries where the words provided have been used.
See the "Concordance Search" topic for particulars.
* character. Use
Segment Leverage and
Concordance search mode to find related matches. Note that * is interpreted as a wildcard character only in
Standard search mode.
0%, or specify a minimum score which a match must have to be included in the result set.
All (the default),
Locked, or
Unlocked.
icon is placed next to it:
Pending Review,
Reviewed, or
Rejected status. See the topic on "Live Translation Memory Mode" for a description of these statuses.
) to perform the search.
) to perform the search.
Freeform SQL queries have the following rules:
%" to denote wildcard and the comparison operator
"like" to perform containment or substring search.
%" and
"_", escape them using a backslash.
{} using the date format specified in the
strings.properties file. For example,
MM/dd/yy hh:mm AM (or PM).
Below are some sample queries for Freeform SQL mode:
nuts bolts rotat"
[Source] like ‘%nuts bolts rotat%’
nuts"
[Source] like ‘%nuts%’
nuts" OR
"bolts"
[Source] like ‘%nuts%’ or [Source] like ‘%bolts%’
nuts" AND
"bolts"
[Target] like ‘%nuts%’ and [Target] like ‘%bolts%’
nuts*bolts*rotat" (Order of words is implied; not the same as
"nuts" AND
"bolts" AND
"rotat".)
[Target] like ‘%nuts%bolts%rotat%’
(nuts" OR
"bolts)" AND
"(rotat)".
([Target] like ‘%nuts%’ or [Target] like ‘%bolts%’) and [Target] like ‘%rotat%’
N before a string containing Unicode characters.
[Source] like N'%search string%'
Miscellaneous Examples
[Source] like '[^A-Z]%oracle[^A-Z]%corporation'
([Source] like '%' or [Target] like '%') and [Created By] = 'Admin' and [Modified By] = 'Admin' and [SID] is null and [Source] is not null
([Source] like '%oracle%' or [Source] like '%ebay%' or [Source] like '%Mold Layout%') and ([Target] like '%oracle%' or [Target] like '%ebay%' or [Target] like '%Mold Layout%')
[Source] like '%'
-- search for wildcard characters % and _
[Source] like '%\%%' and [Source] like '%\_%'
-- search for 4 single '
[Source] like '%''''''''%'
-- search for single \
[Source] like '%\\%'
[Source] like '%' order by [Source]
[Source] like '%' order by [Source] desc
[Source] like '%' order by [Modified On]
[Source] like '%' order by [Modified On] asc
[Source] like '%' order by [Modified On] desc
[Source] like '%' order by [Source], [Target]
[Source] like '%' order by [Source], [Target], [Created By], [Modified By], [Created On], [Modified On]
[Source] like '%' order by [Source] desc, [Target] desc, [Created By], [Modified By], [Created On] desc, [Modified On] desc
[Source] like 'eBay : Crafts Seller Guide : Advanced Strategies'
[Source] = 'eBay : Crafts Seller Guide : Advanced Strategies'
[Source] like 'What works for one company may not work for another. ' or [Source] like 'eBay : Crafts Seller Guide : Advanced Strategies' or [Source] like 'Therefore, you should not use this as a formula for success. '
[Source] in ('What works for one company may not work for another. ', 'eBay : Crafts Seller Guide : Advanced Strategies', 'Therefore, you should not use this as a formula for success. ')
[Created By] = 'Admin' and ([Created On] between {01/22/04 11:15 AM} and {01/22/04 11:16 AM})
[Created By] = 'Admin' and [Modified On] > = {01/22/04 11:15 AM}
[Created By] = 'Admin' and [Modified On] < {01/22/04 11:15 AM}
[Created On] between {01/20/04 11:15 AM} and {01/22/04 11:16 AM} order by [Created On]
[Created On] between {01/20/04 11:15 AM} and {01/22/04 11:16 AM} order by [Source], [Target], [Created By], [Modified By], [Created On], [Modified On]