-
-
Notifications
You must be signed in to change notification settings - Fork 588
feat(search): add unicode character removal for fuzzy matching #4360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from 6 commits
d2f8663
03164fb
f905530
17b2970
0588fa6
c270c9d
6dfb208
0059f3e
352fdc7
bb10b1f
99e7810
56973ed
b6028dc
a52a6af
839b978
c2df52e
99f2b3b
54a458d
2c53648
52bb34f
0559145
7732442
b7bd1cc
2228633
4cbe223
c945d08
e0f7722
459a369
0228f7a
7607844
2ab6405
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -114,13 +114,18 @@ | |
| <system:String x:Key="nodeFilePath">Caminho do Node.js</system:String> | ||
| <system:String x:Key="selectNodeExecutable">Selecione o executável do Node.js</system:String> | ||
| <system:String x:Key="selectPythonExecutable">Por favor, selecione pythonw.exe</system:String> | ||
| <system:String x:Key="typingStartEn">Sempre Começar Digitando em Modo Inglês</system:String> | ||
| <system:String x:Key="typingStartEn">Sempre Começar Digitando em Modo Inglês</system:String> | ||
|
coderabbitai[bot] marked this conversation as resolved.
Outdated
|
||
| <system:String x:Key="typingStartEnTooltip">Temporariamente altere seu método de entrada para o Modo Inglês ao ativar o Flow.</system:String> | ||
| <system:String x:Key="autoUpdates">Atualizar Automaticamente</system:String> | ||
| <system:String x:Key="autoUpdatesTooltip">Automatically check and update the app when available</system:String> | ||
| <system:String x:Key="select">Selecionar</system:String> | ||
| <system:String x:Key="hideOnStartup">Esconder Flow Launcher na inicialização</system:String> | ||
| <system:String x:Key="hideOnStartupToolTip">Flow Launcher search window is hidden in the tray after starting up.</system:String> | ||
| <system:String x:Key="sensitiveAccent">Ativar a distinção de acentuação na consulta de programas.</system:String> | ||
| <system:String x:Key="sensitiveAccentToolTip">Quando esta opção for alterada, será necessária uma reinicialização. Quando ativada, você poderá encontrar programas que contêm caracteres acentuados com mais facilidade.</system:String> | ||
| <system:String x:Key="sensitiveAccentRestartTitle">Reinicialização Necessária</system:String> | ||
| <system:String x:Key="sensitiveAccentRestartMessage">Alterar a sensibilidade de acentos requer a reinicialização do Flow Launcher para surtir efeito.</system:String> | ||
| <system:String x:Key="sensitiveAccentRestartButton">Reiniciar Agora</system:String> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Find language files missing the sensitiveAccent* keys
echo "=== Language files missing sensitiveAccent keys ==="
for file in $(fd -e xaml . Flow.Launcher/Languages/); do
missing=""
for key in sensitiveAccent sensitiveAccentToolTip sensitiveAccentRestartTitle sensitiveAccentRestartMessage sensitiveAccentRestartButton; do
if ! grep -q "x:Key=\"$key\"" "$file"; then
missing="$missing $key"
fi
done
if [ -n "$missing" ]; then
echo "$file: missing$missing"
fi
doneRepository: Flow-Launcher/Flow.Launcher Length of output: 4324 Add sensitiveAccent keys to 25 other language files to prevent blank UI text.* The five new keys ( The missing files are: ar, cs, da, de, es, es-419, fr, he, it, ja, ko, nb, nb-NO, nl, pl, pt-pt, ru, sk, sr, sr-Cyrl-RS, tr, uk-UA, vi, zh-cn, zh-tw. Add these keys to all language files—at minimum with English fallback text if translations are not yet available. 🤖 Prompt for AI Agents |
||
| <system:String x:Key="hideNotifyIcon">Ocultar ícone da bandeja</system:String> | ||
| <system:String x:Key="hideNotifyIconToolTip">Quando o ícone não está na bandeja, o menu de Configurações pode ser aberto ao clicar na janela de busca com o botão direito do mouse.</system:String> | ||
| <system:String x:Key="querySearchPrecision">Precisão de Busca da Consulta</system:String> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.