Skip to content

Commit 4935471

Browse files
Release build 10.13.0 [ci release]
1 parent 40e8497 commit 4935471

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1656
-146
lines changed

CHANGELOG.txt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
- NTP: Display URL in if Omnibar suggestion title is empty (#1825)
2-
- Move focus to input when switching Omnibar tabs (#1823)
3-
- NTP: Reset omnibar after form submission (#1819)
4-
- NTP: Set target to 'new-tab' and 'new-window' properly when submitting Omnibar (#1824)
5-
- Fix TabSwitcher icon shifting by 1px when animating in WebKit (#1822)
6-
- messaging: move docs to Markdown and never throw on calls to .notify (#1817)
1+
- Add video playback observer (#1721)
2+
- NTP: Omnibar i18n (#1827)

Sources/ContentScopeScripts/dist/contentScope.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,6 +1330,7 @@
13301330
"breakageReporting",
13311331
"autofillPasswordImport",
13321332
"favicon",
1333+
"webTelemetry",
13331334
"scriptlets"
13341335
]
13351336
);
@@ -1350,6 +1351,7 @@
13501351
windows: [
13511352
"cookie",
13521353
...baseFeatures,
1354+
"webTelemetry",
13531355
"windowsPermissionUsage",
13541356
"duckPlayer",
13551357
"brokerProtection",

Sources/ContentScopeScripts/dist/contentScopeIsolated.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2035,6 +2035,7 @@
20352035
"breakageReporting",
20362036
"autofillPasswordImport",
20372037
"favicon",
2038+
"webTelemetry",
20382039
"scriptlets"
20392040
]
20402041
);
@@ -2055,6 +2056,7 @@
20552056
windows: [
20562057
"cookie",
20572058
...baseFeatures,
2059+
"webTelemetry",
20582060
"windowsPermissionUsage",
20592061
"duckPlayer",
20602062
"brokerProtection",

Sources/ContentScopeScripts/dist/pages/new-tab/dist/index.js

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7745,8 +7745,8 @@
77457745
ref: textAreaRef,
77467746
class: AiChatForm_default.textarea,
77477747
value: chat,
7748-
placeholder: t4("aiChatForm_placeholder"),
7749-
"aria-label": t4("aiChatForm_placeholder"),
7748+
placeholder: t4("omnibar_aiChatFormPlaceholder"),
7749+
"aria-label": t4("omnibar_aiChatFormPlaceholder"),
77507750
autoComplete: "off",
77517751
rows: 1,
77527752
onKeyDown: handleKeyDown,
@@ -7757,7 +7757,7 @@
77577757
{
77587758
type: "submit",
77597759
class: AiChatForm_default.submitButton,
7760-
"aria-label": t4("aiChatForm_submitButtonLabel"),
7760+
"aria-label": t4("omnibar_aiChatFormSubmitButtonLabel"),
77617761
disabled: chat.length === 0,
77627762
onClick: handleClickSubmit,
77637763
onAuxClick: handleClickSubmit
@@ -8210,8 +8210,8 @@
82108210
type: "text",
82118211
role: "combobox",
82128212
class: SearchForm_default.input,
8213-
placeholder: t4("searchForm_placeholder"),
8214-
"aria-label": t4("searchForm_placeholder"),
8213+
placeholder: t4("omnibar_searchFormPlaceholder"),
8214+
"aria-label": t4("omnibar_searchFormPlaceholder"),
82158215
"aria-expanded": suggestions.length > 0,
82168216
"aria-haspopup": "listbox",
82178217
"aria-controls": suggestionsListId,
@@ -28950,11 +28950,11 @@
2895028950
title: "Search",
2895128951
description: "Title of the omnibar widget in the customizer panel."
2895228952
},
28953-
aiChatForm_placeholder: {
28953+
omnibar_aiChatFormPlaceholder: {
2895428954
title: "Chat privately with Duck.ai",
2895528955
description: "Placeholder text for the AI chat input field."
2895628956
},
28957-
aiChatForm_submitButtonLabel: {
28957+
omnibar_aiChatFormSubmitButtonLabel: {
2895828958
title: "Send",
2895928959
description: "Accesible label for the AI chat submit button."
2896028960
},
@@ -28974,18 +28974,10 @@
2897428974
title: "Duck.ai",
2897528975
description: "Label for the AI chat tab."
2897628976
},
28977-
searchForm_placeholder: {
28977+
omnibar_searchFormPlaceholder: {
2897828978
title: "Search or enter address",
2897928979
description: "Placeholder text for the search input field."
2898028980
},
28981-
searchForm_searchButtonLabel: {
28982-
title: "Web search",
28983-
description: "Accessible label for the web search submit button."
28984-
},
28985-
searchForm_aiButtonLabel: {
28986-
title: "Duck.ai",
28987-
description: "Accessible label for the AI chat button in search form."
28988-
},
2898928981
nextSteps_sectionTitle: {
2899028982
title: "Next Steps",
2899128983
note: "Text that goes in the Next Steps bubble above the first card"

Sources/ContentScopeScripts/dist/pages/new-tab/locales/de/new-tab.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,38 @@
124124
"title" : "{count} Versuche von anderen Netzwerken",
125125
"note" : "An aggregated count of blocked entries not present in the main list. For example, '200 attempts from other networks'"
126126
},
127+
"omnibar_menuTitle" : {
128+
"title" : "Suche",
129+
"description" : "Title of the omnibar widget in the customizer panel."
130+
},
131+
"omnibar_aiChatFormPlaceholder" : {
132+
"title" : "Privat mit Duck.ai chatten",
133+
"description" : "Placeholder text for the AI chat input field."
134+
},
135+
"omnibar_aiChatFormSubmitButtonLabel" : {
136+
"title" : "Senden",
137+
"description" : "Accesible label for the AI chat submit button."
138+
},
139+
"omnibar_logoAlt" : {
140+
"title" : "DuckDuckGo",
141+
"description" : "Alt text for the DuckDuckGo logo."
142+
},
143+
"omnibar_tabSwitcherLabel" : {
144+
"title" : "Suche & Duck.ai Tabwechsel-Bildschirm",
145+
"description" : "Accessible label for the tab switcher between search and AI modes."
146+
},
147+
"omnibar_searchTabLabel" : {
148+
"title" : "Suche",
149+
"description" : "Label for the search tab."
150+
},
151+
"omnibar_aiTabLabel" : {
152+
"title" : "Duck.ai",
153+
"description" : "Label for the AI chat tab."
154+
},
155+
"omnibar_searchFormPlaceholder" : {
156+
"title" : "Adresse suchen oder eingeben",
157+
"description" : "Placeholder text for the search input field."
158+
},
127159
"nextSteps_sectionTitle" : {
128160
"title" : "Nächste Schritte",
129161
"note" : "Text that goes in the Next Steps bubble above the first card"
@@ -368,4 +400,4 @@
368400
"title" : "Zusätzliches ausblenden",
369401
"note" : "Button label that hides the expanded browsing history items."
370402
}
371-
}
403+
}

Sources/ContentScopeScripts/dist/pages/new-tab/locales/en/new-tab.json

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@
129129
"title": "Search",
130130
"description": "Title of the omnibar widget in the customizer panel."
131131
},
132-
"aiChatForm_placeholder": {
132+
"omnibar_aiChatFormPlaceholder": {
133133
"title": "Chat privately with Duck.ai",
134134
"description": "Placeholder text for the AI chat input field."
135135
},
136-
"aiChatForm_submitButtonLabel": {
136+
"omnibar_aiChatFormSubmitButtonLabel": {
137137
"title": "Send",
138138
"description": "Accesible label for the AI chat submit button."
139139
},
@@ -153,18 +153,10 @@
153153
"title": "Duck.ai",
154154
"description": "Label for the AI chat tab."
155155
},
156-
"searchForm_placeholder": {
156+
"omnibar_searchFormPlaceholder": {
157157
"title": "Search or enter address",
158158
"description": "Placeholder text for the search input field."
159159
},
160-
"searchForm_searchButtonLabel": {
161-
"title": "Web search",
162-
"description": "Accessible label for the web search submit button."
163-
},
164-
"searchForm_aiButtonLabel": {
165-
"title": "Duck.ai",
166-
"description": "Accessible label for the AI chat button in search form."
167-
},
168160
"nextSteps_sectionTitle": {
169161
"title": "Next Steps",
170162
"note": "Text that goes in the Next Steps bubble above the first card"

Sources/ContentScopeScripts/dist/pages/new-tab/locales/es/new-tab.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,38 @@
124124
"title" : "{count} intentos de otras redes",
125125
"note" : "An aggregated count of blocked entries not present in the main list. For example, '200 attempts from other networks'"
126126
},
127+
"omnibar_menuTitle" : {
128+
"title" : "Buscar",
129+
"description" : "Title of the omnibar widget in the customizer panel."
130+
},
131+
"omnibar_aiChatFormPlaceholder" : {
132+
"title" : "Chatea en privado con Duck.ai",
133+
"description" : "Placeholder text for the AI chat input field."
134+
},
135+
"omnibar_aiChatFormSubmitButtonLabel" : {
136+
"title" : "Enviar",
137+
"description" : "Accesible label for the AI chat submit button."
138+
},
139+
"omnibar_logoAlt" : {
140+
"title" : "DuckDuckGo",
141+
"description" : "Alt text for the DuckDuckGo logo."
142+
},
143+
"omnibar_tabSwitcherLabel" : {
144+
"title" : "Selector de pestañas de búsqueda y Duck.ai",
145+
"description" : "Accessible label for the tab switcher between search and AI modes."
146+
},
147+
"omnibar_searchTabLabel" : {
148+
"title" : "Buscar",
149+
"description" : "Label for the search tab."
150+
},
151+
"omnibar_aiTabLabel" : {
152+
"title" : "Duck.ai",
153+
"description" : "Label for the AI chat tab."
154+
},
155+
"omnibar_searchFormPlaceholder" : {
156+
"title" : "Buscar o introducir dirección",
157+
"description" : "Placeholder text for the search input field."
158+
},
127159
"nextSteps_sectionTitle" : {
128160
"title" : "Próximos pasos",
129161
"note" : "Text that goes in the Next Steps bubble above the first card"
@@ -368,4 +400,4 @@
368400
"title" : "Ocultar adicional",
369401
"note" : "Button label that hides the expanded browsing history items."
370402
}
371-
}
403+
}

Sources/ContentScopeScripts/dist/pages/new-tab/locales/fr/new-tab.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,38 @@
124124
"title" : "{count} tentatives provenant d'autres réseaux",
125125
"note" : "An aggregated count of blocked entries not present in the main list. For example, '200 attempts from other networks'"
126126
},
127+
"omnibar_menuTitle" : {
128+
"title" : "Rechercher",
129+
"description" : "Title of the omnibar widget in the customizer panel."
130+
},
131+
"omnibar_aiChatFormPlaceholder" : {
132+
"title" : "Discutez en privé avec Duck.ai",
133+
"description" : "Placeholder text for the AI chat input field."
134+
},
135+
"omnibar_aiChatFormSubmitButtonLabel" : {
136+
"title" : "Envoyer",
137+
"description" : "Accesible label for the AI chat submit button."
138+
},
139+
"omnibar_logoAlt" : {
140+
"title" : "DuckDuckGo",
141+
"description" : "Alt text for the DuckDuckGo logo."
142+
},
143+
"omnibar_tabSwitcherLabel" : {
144+
"title" : "Sélecteur d'onglets de recherche et de Duck.ai",
145+
"description" : "Accessible label for the tab switcher between search and AI modes."
146+
},
147+
"omnibar_searchTabLabel" : {
148+
"title" : "Rechercher",
149+
"description" : "Label for the search tab."
150+
},
151+
"omnibar_aiTabLabel" : {
152+
"title" : "Duck.ai",
153+
"description" : "Label for the AI chat tab."
154+
},
155+
"omnibar_searchFormPlaceholder" : {
156+
"title" : "Rechercher ou saisir une adresse",
157+
"description" : "Placeholder text for the search input field."
158+
},
127159
"nextSteps_sectionTitle" : {
128160
"title" : "Étapes suivantes",
129161
"note" : "Text that goes in the Next Steps bubble above the first card"
@@ -368,4 +400,4 @@
368400
"title" : "Masquer les éléments supplémentaires",
369401
"note" : "Button label that hides the expanded browsing history items."
370402
}
371-
}
403+
}

Sources/ContentScopeScripts/dist/pages/new-tab/locales/it/new-tab.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,38 @@
124124
"title" : "{count} tentativi da altre reti",
125125
"note" : "An aggregated count of blocked entries not present in the main list. For example, '200 attempts from other networks'"
126126
},
127+
"omnibar_menuTitle" : {
128+
"title" : "Ricerca",
129+
"description" : "Title of the omnibar widget in the customizer panel."
130+
},
131+
"omnibar_aiChatFormPlaceholder" : {
132+
"title" : "Chatta in privato con Duck.ai",
133+
"description" : "Placeholder text for the AI chat input field."
134+
},
135+
"omnibar_aiChatFormSubmitButtonLabel" : {
136+
"title" : "Invia",
137+
"description" : "Accesible label for the AI chat submit button."
138+
},
139+
"omnibar_logoAlt" : {
140+
"title" : "DuckDuckGo",
141+
"description" : "Alt text for the DuckDuckGo logo."
142+
},
143+
"omnibar_tabSwitcherLabel" : {
144+
"title" : "Selettore delle schede Ricerca e Duck.ai",
145+
"description" : "Accessible label for the tab switcher between search and AI modes."
146+
},
147+
"omnibar_searchTabLabel" : {
148+
"title" : "Ricerca",
149+
"description" : "Label for the search tab."
150+
},
151+
"omnibar_aiTabLabel" : {
152+
"title" : "Duck.ai",
153+
"description" : "Label for the AI chat tab."
154+
},
155+
"omnibar_searchFormPlaceholder" : {
156+
"title" : "Cerca o digita l'indirizzo",
157+
"description" : "Placeholder text for the search input field."
158+
},
127159
"nextSteps_sectionTitle" : {
128160
"title" : "Passaggi successivi",
129161
"note" : "Text that goes in the Next Steps bubble above the first card"
@@ -368,4 +400,4 @@
368400
"title" : "Nascondi altro",
369401
"note" : "Button label that hides the expanded browsing history items."
370402
}
371-
}
403+
}

Sources/ContentScopeScripts/dist/pages/new-tab/locales/nl/new-tab.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,38 @@
124124
"title" : "{count} pogingen van andere netwerken",
125125
"note" : "An aggregated count of blocked entries not present in the main list. For example, '200 attempts from other networks'"
126126
},
127+
"omnibar_menuTitle" : {
128+
"title" : "Zoeken",
129+
"description" : "Title of the omnibar widget in the customizer panel."
130+
},
131+
"omnibar_aiChatFormPlaceholder" : {
132+
"title" : "Privé chatten met Duck.ai",
133+
"description" : "Placeholder text for the AI chat input field."
134+
},
135+
"omnibar_aiChatFormSubmitButtonLabel" : {
136+
"title" : "Versturen",
137+
"description" : "Accesible label for the AI chat submit button."
138+
},
139+
"omnibar_logoAlt" : {
140+
"title" : "DuckDuckGo",
141+
"description" : "Alt text for the DuckDuckGo logo."
142+
},
143+
"omnibar_tabSwitcherLabel" : {
144+
"title" : "Zoeken en Duck.ai tabbladschakelaar",
145+
"description" : "Accessible label for the tab switcher between search and AI modes."
146+
},
147+
"omnibar_searchTabLabel" : {
148+
"title" : "Zoeken",
149+
"description" : "Label for the search tab."
150+
},
151+
"omnibar_aiTabLabel" : {
152+
"title" : "Duck.ai",
153+
"description" : "Label for the AI chat tab."
154+
},
155+
"omnibar_searchFormPlaceholder" : {
156+
"title" : "Zoek of voer een adres in",
157+
"description" : "Placeholder text for the search input field."
158+
},
127159
"nextSteps_sectionTitle" : {
128160
"title" : "Volgende stappen",
129161
"note" : "Text that goes in the Next Steps bubble above the first card"
@@ -368,4 +400,4 @@
368400
"title" : "Aanvullende gegevens verbergen",
369401
"note" : "Button label that hides the expanded browsing history items."
370402
}
371-
}
403+
}

0 commit comments

Comments
 (0)