[Python-checkins] Update the language selection in the docs language switch. (GH-3114) (#3115)

Victor Stinner webhook-mailer at python.org
Thu Aug 17 10:37:03 EDT 2017


https://github.com/python/cpython/commit/fcecb0e365c35fb0e8410609d78881289bee7c26
commit: fcecb0e365c35fb0e8410609d78881289bee7c26
branch: 3.6
author: Julien Palard <julien at palard.fr>
committer: Victor Stinner <victor.stinner at gmail.com>
date: 2017-08-17T16:37:00+02:00
summary:

Update the language selection in the docs language switch. (GH-3114) (#3115)

Change the option for `Français` into `French` to be consistent with the other language selections that are already in English.
(cherry picked from commit b616b972999cdd5fe54ef8a43c131a27ca538dee)

files:
M Doc/tools/static/switchers.js

diff --git a/Doc/tools/static/switchers.js b/Doc/tools/static/switchers.js
index ff23202a5e0..bd31faca4c6 100644
--- a/Doc/tools/static/switchers.js
+++ b/Doc/tools/static/switchers.js
@@ -20,7 +20,7 @@
 
   var all_languages = {
       'en': 'English',
-      'fr': 'Français',
+      'fr': 'French',
       'ja': 'Japanese',
   };
 



More information about the Python-checkins mailing list