[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-102.10.0esr-12.5-1] 2 commits: fixup! Bug 41417: Always prompt users to restart after changing language



Title: GitLab

Pier Angelo Vendrame pushed to branch tor-browser-102.10.0esr-12.5-1 at The Tor Project / Applications / Tor Browser

Commits:

  • 7cf4e447
    by Pier Angelo Vendrame at 2023-04-20T20:16:02+02:00
    fixup! Bug 41417: Always prompt users to restart after changing language
    
    Bug 41738: Drop the patch to disable live reload
    
    Revert "Bug 41417: Always prompt users to restart after changing language"
    
    This reverts commit bad85a459ea24b34f3c09924c6d2b9f0bc750d88.
    
  • 4ae88530
    by Pier Angelo Vendrame at 2023-04-20T20:16:02+02:00
    fixup! Firefox preference overrides.
    
    Bug 41738: Drop the patch to disable live reload and use the pref
    

2 changed files:

Changes:

  • browser/app/profile/001-base-profile.js
    ... ... @@ -499,6 +499,10 @@ pref("browser.urlbar.suggest.topsites", false);
    499 499
     // is only reported via telemetry (which is disabled). See tor-browser#40048.
    
    500 500
     pref("corroborator.enabled", false);
    
    501 501
     
    
    502
    +// tor-browser#41417: do not allow live reload until we switch to Fluent and
    
    503
    +// stop using .textContent.
    
    504
    +pref("intl.multilingual.liveReload", false);
    
    505
    +
    
    502 506
     // Onboarding.
    
    503 507
     pref("browser.onboarding.tourset-version", 5);
    
    504 508
     pref("browser.onboarding.newtour", "welcome,privacy,tor-network-9.0,circuit-display,security,expect-differences,onion-services,learn-more");
    

  • browser/components/preferences/main.js
    ... ... @@ -1196,17 +1196,18 @@ var gMainPane = {
    1196 1196
         gMainPane.recordBrowserLanguagesTelemetry("reorder");
    
    1197 1197
     
    
    1198 1198
         switch (gMainPane.getLanguageSwitchTransitionType(newLocales)) {
    
    1199
    -      // tor-browser#41417: Always prompt for the restart, until we switch to
    
    1200
    -      // Fluent, since the current way we use to update languages does not allow
    
    1201
    -      // live-reload. We could also call showConfirmLanguageChangeMessageBar in
    
    1202
    -      // the official live-reload case, but the result is inconsistent and makes
    
    1203
    -      // handling the locales-match case harder.
    
    1204 1199
           case "requires-restart":
    
    1205
    -      case "live-reload":
    
    1206 1200
             // Prepare to change the locales, as they were different.
    
    1207 1201
             gMainPane.showConfirmLanguageChangeMessageBar(newLocales);
    
    1208 1202
             gMainPane.updatePrimaryBrowserLanguageUI(newLocales[0]);
    
    1209 1203
             break;
    
    1204
    +      case "live-reload":
    
    1205
    +        Services.locale.requestedLocales = newLocales;
    
    1206
    +        gMainPane.updatePrimaryBrowserLanguageUI(
    
    1207
    +          Services.locale.appLocaleAsBCP47
    
    1208
    +        );
    
    1209
    +        gMainPane.hideConfirmLanguageChangeMessageBar();
    
    1210
    +        break;
    
    1210 1211
           case "locales-match":
    
    1211 1212
             // They matched, so we can reset the UI.
    
    1212 1213
             gMainPane.updatePrimaryBrowserLanguageUI(
    
    ... ... @@ -1459,12 +1460,18 @@ var gMainPane = {
    1459 1460
         }
    
    1460 1461
     
    
    1461 1462
         switch (gMainPane.getLanguageSwitchTransitionType(selected)) {
    
    1462
    -      // tor-browser#41417: see onPrimaryBrowserLanguageMenuChange
    
    1463 1463
           case "requires-restart":
    
    1464
    -      case "live-reload":
    
    1465 1464
             gMainPane.showConfirmLanguageChangeMessageBar(selected);
    
    1466 1465
             gMainPane.updatePrimaryBrowserLanguageUI(selected[0]);
    
    1467 1466
             break;
    
    1467
    +      case "live-reload":
    
    1468
    +        Services.locale.requestedLocales = selected;
    
    1469
    +
    
    1470
    +        gMainPane.updatePrimaryBrowserLanguageUI(
    
    1471
    +          Services.locale.appLocaleAsBCP47
    
    1472
    +        );
    
    1473
    +        gMainPane.hideConfirmLanguageChangeMessageBar();
    
    1474
    +        break;
    
    1468 1475
           case "locales-match":
    
    1469 1476
             // They matched, so we can reset the UI.
    
    1470 1477
             gMainPane.updatePrimaryBrowserLanguageUI(
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits