Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

How do I change the language of all Powerpoint slides at once?

I want to change the proofing language of all my slides in a Powerpoint. I've tried setting the language via the Language Preferences menu, however this only changes it for new powerpoints.

  • microsoft-office
  • microsoft-powerpoint
  • microsoft-powerpoint-2010

liamzebedee's user avatar

  • 7 Possible duplicate of Change the spell-checking language on a PowerPoint presentation –  sancho.s ReinstateMonicaCellio Aug 31, 2016 at 7:06
  • 1 It seems that the newest version of PowerPoint is especially buggy in this respect. I have a text box where I've changed the language of all text to language A. (The default language is B.) So when I start typing within that text box, the language automatically changes to B. I thought maybe changing the default language helps (having tried everything else) but no. Now the default language is A, the language of all other text in the text box is A (and I've restarted PP) but all new text still appears as B. So my only remaining question is: is there a way to switch proofing off altogether? –  lebatsnok Nov 8, 2017 at 9:45
  • Yes there is a way to turn of spell checking: support.microsoft.com/en-us/help/937422/… -- solved my problem! –  lebatsnok Nov 8, 2017 at 9:48
  • The comment by superuser.com/a/1096722/474383 is actually more relevant. Just changing the keyboard languages (in Windows, not PowerPoint) will make all the newly created text boxes adhere to that language. –  Roel Vermeulen Jul 19, 2020 at 15:44
  • I changed settings but it is not working for new slides, always proofing is English :S –  Halil İbrahim Oymacı Sep 7, 2020 at 6:18

9 Answers 9

To change the language of the entire PowerPoint easily, open the View tab and select the Outline view.

  • Ctrl + A to select all.
  • Tools → Language → Choose your language to set.

Likewise while you have everything selected you can change other things like fonts, colours etc. Although of course in many case this is better done by changing the slide master, a presentation that has had many editors may have lots of 'hard' formatting set which deviates from the underlying master and needs resetting to be consistent. You can also reset individual slides to the master style, but this may result in placeholders moving as well, which may be undesirable in some situations.

PowerPoint 2013

  • View → Outline → select all slides (in a left menu) via Ctrl + A .
  • Review → Language → Set Proofing Language... → Choose your language to set.

As for me - PowerPoint restart was needed. Probably because I also did changed Editing Language :

  • Review → Language → Set Proofing Language... → Language Preferences → Choose Editing Languages .

qubodup's user avatar

  • 65 Thanks for answer, but after changing the language, the newly typed text is still in the previous language (the default one). Moreover, if you go to the master slides, select the slide , you'll notice, that the language in the language bar is still the default one, and the menu to change it is greyed out. I'm getting crazy that it haven't been solved by Microsoft for so many years. –  Endrju Apr 25, 2014 at 14:52
  • 8 Powerpoint is just shockingly bad isn't it? I actually miss using open office when I have issues like this. I'll be back to open office as soon as they support saving to a video. –  mjaggard Oct 9, 2015 at 14:06
  • 4 Main limitation of this is that if someone in their infinite wisdom created custom text box instead of using proper Title+Content layouts, this just won't work. –  Lilienthal Sep 18, 2018 at 13:42
  • 6 Does not work for me as soon as I select multiple slides or even multiple elements on a slide I'm not able to select the language anymore. Maybe due to a very broken master slide, I don't know –  Kai May 13, 2020 at 15:52
  • 10 It's absolutely CRAZY that this shit piece of software will not let me once and for ever switch the language used in a presentation deck for good. Yes, you can select all and change it - but every new slide again is presented with the wrong language set... –  Zordid Oct 27, 2020 at 13:13

Using Powerpoint 2010 I opened the Outline menu -

outline tab

Selected all text (Ctrl+A), opened the language menu and set my proofing language

language option

And it worked!

The language menu is located on the Review ribbon tab (after the Slide Show tab and not visible on the screenshot).

random's user avatar

  • 5 Only works for a single slide –  Helge Klein Oct 16, 2013 at 8:12
  • 18 This works for basic slide layouts. It will not change the language for text inside text boxes or nested within other shapes. –  Duncan Jones Nov 25, 2013 at 9:53
  • Works on Office 2007 too. –  Alfredo Osorio Nov 12, 2014 at 19:03
  • Worked on Office Mac too. –  Jim McKeeth Nov 13, 2014 at 18:35

I improved upon Inigo's answer to provide a recursive version that changes all items to the desired language.

This version will recursively investigate each shape that is a group type. Some experimentation suggests that msoGroup and msoSmartArt are the group types - feel free to add to that list if you find other types of shapes that can hold text objects.

Marcus Mangelsdorf's user avatar

  • 2 When running this in PowerPoint 16.10 on OSX, I get: Compile error: Method or data member not found –  Etienne Low-Décarie Feb 17, 2018 at 20:20
  • Thanks a lot for this brilliant solution. If I want the US English, can I just change msoLanguageIDEnglishUK to msoLanguageIDEnglishUS ? –  Foad Dec 10, 2020 at 7:40
  • one other issue I just saw is that it apparently doesn't change the language of the text inside tables. –  Foad Dec 10, 2020 at 7:53
  • 1 For those new to Macros (on PowerPoint), help yourself: ionos.com/digitalguide/online-marketing/online-sales/… –  Nadjib Mami Jan 5, 2021 at 22:37
  • Got "Execution error" on line targetShape.TextFrame.TextRange.languageID = languageID with Office 365. –  Hebo Apr 28, 2023 at 13:40

The existing answers work for text that is present in the outline. Unfortunately in my case this didn't cover a significant part of the text, including figures, tables, etc.

This macro solved the problem for me :

The "msoLanguageIDEnglishUS" which is used in the above macro can be replaced by any desired language. The full list of languages can be found in this article

(Credit goes to Ganesh Kumar who posted the original macro here . I added support for first level of shape grouping. To further improve it the macro can be made recursive to look for groups which contain other groups, etc.)

Tobias Kienzler's user avatar

  • +1 Good start. See my answer for a fully recursive version based on this answer. –  Duncan Jones Nov 25, 2013 at 9:52

Based on Inigo, Duncan, Maria and DomDev's answers, this works for shapes, tables, groups, SmartArt, now and in the future:

tricasse's user avatar

  • As for other solutions, on when running this in PowerPoint 16.10 on OSX, I get: Compile error: Method or data member not found . Any suggested solutions? It seems to highlight .DefaultLanguageID . –  Etienne Low-Décarie Feb 17, 2018 at 20:27
  • @EtienneLow-Décarie: The API might have changed in PowerPoint 16; I don't have it so I can't check, sorry. –  tricasse Feb 19, 2018 at 10:06
  • Works for me in Powerpoint 2016 on Windows 7 (exact MS Office version is 16.0.11029.20108) –  Christopher K. Dec 19, 2018 at 16:18
  • 1 Perfect! Only improvement I could think of is changing the language for slide notes sections, too :) –  Marcus Mangelsdorf Apr 17, 2019 at 9:10
  • The compile error above is because the LanguageID property was not included in the TextFrame object in later PowerPoint versions. Use TextFrame2 instead of TextFrame... –  markussvensson Jun 2, 2021 at 13:42

In addition to answer provided by Mastergalen and to address comments regarding newly type text:

If you will notice, that language will automatically change back whenever you start to type new text (which is very annoying), you have to change current default language for PowerPoint:

  • make sure PowerPoint window is an active window
  • if not go to Control Panel > Region and Language > Keyboards and Languages . Click Change keybords... , switch to Language bar tab and check Docked in the taskbar option. (this is from Win7, so might be a bit different in other versions).
  • now key action - in the Language bar in the taskbar, click language code and switch to EN (if you want currently to use English in PowerPoint). From now on, all new text in PowerPoint will be in the selected language :-)
  • if you want write in your original language, just change it back.

Community's user avatar

  • 3 But that also changes the keyboard layout, doesn't it?... I want to type English text but I really want to keep my German keyboard layout.... –  Johannes S. Jul 16, 2018 at 12:53
  • 2 @JohannesS. If you right click En in the task bar and select Settings.. you will see in Installed languages German (DE) and English (En), if you expand English, there will be Keyboards listed, expand Keyboards, and add your prefered German keyboard, probably remove English one also. I didnt try it, but should work in theory ;-) –  Gas Jul 16, 2018 at 21:24
  • 4 Wait, so I need to change my keyboard language if I want to have different proofing language? That's stupid. –  Matěj Račinský Apr 4, 2019 at 21:38
  • 1 This is THE answer. I changed the preferred language to English with Hungarian keyboard. Nothing else worked well. If you don't do something like this then all your new English text will be all underlined even if you type in a text box that you previously select all-d to English. It's crazy. –  Piedone Nov 23, 2019 at 13:47
  • 1 @MatějRačinský no, you need to change the input language, not your keyboard layout. Windows is smart enough to distinguish between the two, so you can enter Spanish text with a French keyboard layout, and PowerPoint will check Spanish spelling. That is actually quite smart. To configure, in Windows 10 21H1, go to Language settings. You configure a list of Preferred languages at the bottom, and for each one, you can choose a (potentially different) keyboard layout. The language bar then allows you to switch between languages as well as betwen layouts independently. –  bers Apr 30, 2021 at 8:45

The version of Duncan works well for everything but tables. I found another code which seems to also work with tables: https://stackoverflow.com/questions/4735765/powerpoint-2007-set-language-on-tables-charts-etc-that-contains-text

Hebo's user avatar

  • 1 This seems to have worked on Office 365 –  Hebo Apr 28, 2023 at 13:39
  • Powerpoint is around since 1990, and one has to mess with flippin' VB to change the language for the entire presentation. Somewhat pathetic. Nevertheless, thanks for the script. It seems to have worked on my Powerpoint for Microsoft365 (Version 2304 Build 16.0.something.something) –  Dohn Joe May 12, 2023 at 14:52

I made an add-in back in 2014 for myself which still works fine in PowerPoint 2016. https://github.com/wobba/officeaddin/releases/tag/v1.0.1

It scans for used languages, and allows you to change all at once, looping over.

enter image description here

  • 1 really - this didn't make it into Powerpoint itself and is only available for windows? –  Wolfgang Fahl Dec 13, 2020 at 15:45
  • I know.. and the add-in model using javascript don't support iterating over object setting the language :( –  Mikael Svenson Dec 21, 2020 at 13:43
  • Does not appear in Office 365, sadly –  MappaM Aug 4, 2022 at 9:44
  • 1 The add-in still works fine in Windows desktop version of PowerPoint. But not for Online web version as the API does not support setting language. –  Mikael Svenson Oct 16, 2022 at 8:33

If other methods don't help, unexpected changes of the language may also be caused by the language setting in the slide master.

In order to change it, go to View > Slide Master , select the parent-most master slide, select all elements, and change the language as described in the accepted answer . The change should propagate to all layouts, though placeholder text will remain in the original language.

If possible, the clean solution is to use a template configured with the correct language. However, depending on company-mandated templates / the office installation, or simply when trying to fix an existing file, this might not be possible.

kdb's user avatar

  • It doesn't work on 365 v2008 build 13127.21064. Powerpoint always detect languages even if they are not in the list of language preferences. At the moment i have to go to every text box, select all, and set the "proofing language" to the desired and default. Powerpoint is a really unprofessional software –  Daniel Perez Jan 29, 2021 at 9:23
  • If only it was as simple as that :) –  MappaM Oct 16, 2023 at 6:58

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged windows microsoft-office microsoft-powerpoint microsoft-powerpoint-2010 ..

  • The Overflow Blog
  • Climbing the GenAI decision tree sponsored post
  • Diverting more backdoor disasters
  • Featured on Meta
  • New Focus Styles & Updated Styling for Button Groups
  • Upcoming initiatives on Stack Overflow and across the Stack Exchange network
  • Google Cloud will be Sponsoring Super User SE

Hot Network Questions

  • Haste creature under The Akroan War chapter 2 ability
  • Addplot messes with axis coordinate system?
  • What were the major things that caused TCP/IP to become the internet standard protocol?
  • Is there any difference between a heavy meal and a large meal, between a light meal and a small meal?
  • Novella about man reminiscing about his girlfriend/wife while standing by her dead body
  • Was cuneiform ever 'written'?
  • Did Goethe say this quote praising the Prophet Muhammed?
  • What's the most common word in Latin?
  • Does physicalism imply that an explanation for consciousness is a category error?
  • Why does Apple add a key for §
  • Expectation on a Polish space
  • Why do most philosophers believe in a deterministic formulation of quantum mechanics?
  • Replacing light bulb in flat fixture
  • What are some of the legal consequenses of hiring full-time employees on contract basis?
  • American 'bought' sometimes sounds like 'bop'?
  • How to equally split college fund between 2 children going to college 5 years apart?
  • Insurance for expeditions
  • QGIS layout, print grid labels beside lines
  • Is an LED driver IC just a boost conv with voltage across Rsense fed into FB?
  • How to write a paper with word count limit?
  • PNP transistor not pulling up completely : what is wrong in my schematic?
  • How do I snap an object permanently to another object in animation?
  • Factoring through projective modules is an equivalence relation
  • Red Dwarf: Episode in which Holly Offers to Make a Woman?

how to change the language of an entire powerpoint presentation

Indezine Logo

  • Text and Fonts

Changing Proofing Language for an Entire Presentation in PowerPoint 365 for Windows

Learn how to set proofing language for an entire presentation in PowerPoint 365 for Windows. These guidelines will help you approach the task of changing the proofing language.

Author: Geetesh Bajaj

Product/Version: PowerPoint 365 for Windows

OS: Microsoft Windows 10 and higher

Date Created: February 7, 2022 Last Updated: February 7, 2022

Learn PowerPoint

Learn how you can center objects on a PowerPoint Slide?

While it is easy to change the proofing language for selected text containers , doing so one text container at a time can be a great time-waster, especially if you need the language changed across all content in many slides. There are three ways to set the proofing language for your entire presentation, and you can use one or more of these approaches. Make sure you have the proofing tools installed for all or any of the languages that you need to work within PowerPoint.

Follow these steps to change the proofing language for an entire presentation in PowerPoint 365 for Windows :

1. By Selecting Individual Text Containers

Follow these steps to change the proofing language for some or all text containers in your presentation:

  • Within PowerPoint, navigate to any slide. Now, select all text containers on this slide. You can select the text containers in various ways:
  • If there is only one text container on the slide, click on the edge of the text container to select it.
  • If there are more than one text containers on the slide and nothing else, press Ctrl + A to select all text containers.
  • If there are more than one text containers on the slide that also include other slide objects, press Ctrl + A to select all slide objects on the slide. Then, deselect the slide object that you may not want as part of the selection. You can quickly deselect any object by Shift +clicking the object.

PowerPoint Keyboard Shortcuts

PowerPoint Keyboard Shortcuts

Do you want more keyboard shortcuts?

Explore our PowerPoint Keyboard Shortcuts and Sequences Ebook that is updated for all PowerPoint versions.

  • At this point of time, you have selected one or all text containers you want to alter the proofing language for, as shown in Figure 1 , below.

Text containers selected on a slide in PowerPoint 365 for Windows

  • You can alter the proofing language by clicking the Language button, as shown highlighted in red within Figure 2 , below. Alternatively, click the Language option on the Status Bar , as shown highlighted in red within Figure 1 , above.

Set proofing language in PowerPoint 365

No Language Option on the Status Bar?

  • Cannot see the Language option on the Status Bar . See our Language Options on the Status Bar in PowerPoint 365 for Windows tutorial.
  • Doing so brings up the Language dialog box, shown in Figure 3 , below. Scroll down to select an installed Editing Languages . Installed languages can be recognized by the checkmark preceding them as shown in Figure 3 . Choose the language you want to use for your selected text container. Thereafter click the OK button, highlighted in blue within Figure 3 .

Language dialog box in PowerPoint 365 for Windows

  • Doing so will change the proofing language, and you will see the updated language on the Status Bar .
  • You can repeat this process to change the Language option for all the other slides in your presentation.

2. By Using Outline View

Follow these steps to change the proofing language for the entire presentation through Outline view :

  • With your presentation open, access Outline view , as shown highlighted in red within Figure 4 , below. This view is a special view that's part of the PowerPoint 365 interface and shows all text within the text placeholders of your presentation.

Outline view within PowerPoint 365 interface

Text Placeholders vs. Text Boxes

  • The Outline view only shows textual content in placeholders, and leaves out any text content in text boxes or shapes. Learn about the difference between a text box and a text placeholder in our Text Boxes vs. Text Placeholders tutorial.
  • Click once within the left pane in Outline view, and select the entire text content by pressing Ctrl + A on your keyboard. Now, click the Language option on the Status Bar , as shown highlighted in blue within Figure 5 , above.
  • This step summons the Language dialog box, as shown previously on this page in Figure 3 . Scroll down to select an installed Editing Languages . Installed languages can be recognized by the checkmark preceding them as shown in Figure 3 . Choose the language you want to use for your selected text container. Thereafter click the OK button, highlighted in blue within Figure 3 .
  • Note that this approach only changes the proofing language for text placeholders, and leaves text boxes and shapes untouched. For more information on the differences between these various text containers, look at our Text Placeholders vs. Text Boxes tutorial. Shapes with text behave just like text boxes.
  • Save your presentation.

3. By Using think-cell

This technique requires that you have think-cell installed. think-cell is a third-party add-in for PowerPoint. Although we select one text container using this process, the resultant change of proofing language will be for the entire presentation. Follow these steps to proceed:

  • Select any text container in your presentation, as shown in Figure 5 , below.

Select any text container in PowerPoint 365 for Windows

What's a Text Container?

  • A text container is any of these three slide objects that can include text: text placeholders , text boxes , and shapes .
  • Within the Review tab of the Ribbon, locate and click the Language button, as shown highlighted in red within Figure 2 , previously on this page. Doing so brings up a small drop-down menu. Choose the Set Proofing Language option, as shown highlighted in blue within Figure 2 .
  • Doing so will summon the Language dialog box that you see in Figure 6 , below. Do note that this dialog box is different than the original Language dialog box shown in Figure 3 , previously on this page. This new dialog box shows up only when you have the think-cell add-in for PowerPoint installed.

Language dialog box using think-cell in PowerPoint 365 for Windows

  • Choose a proofing language from the dialog box shown in Figure 6 , above. You may need to scroll down to choose a language you need. Do note that installed languages can be recognized by the checkmark preceding them as shown in Figure 6 . When you have selected the proofing language, you can choose any of the following options:
  • Click the OK button, highlighted in blue within Figure 6 . To make this change for the selected text container.
  • Click the All Text button, highlighted in red within Figure 6 to change the proofing language of all text containers in the presentation.

Text on Slide

  • Click the Text on Slide button, highlighted in green within Figure 6 to change the proofing language of all text containers in the slide.
  • Doing so changes the proofing language for all text containers to the selected language.

People Also Ask:

How do i change the language in powerpoint.

There are three areas that use a language in PowerPoint: the editing language, the proofing language, and the interface language. The editing language is what you use to input text content. The proofing language is what PowerPoint uses to spell check the text. Finally, the interface language is what is used to display all the buttons, menus, and controls in PowerPoint and other Microsoft Office programs.

Why does my proofing language keep changing in PowerPoint and Word?

The proofing language could change because your entire PowerPoint presentation or Word document may have text elements set in different languages. In this article, we explore how you can change the proofing language for your entire PowerPoint presentation.

How do I change the spell check language in PowerPoint?

To change the spell check language in PowerPoint, you need to change the proofing language of selected text containers or the entire presentation. Both these issues are addressed in this article and linked pages.

05 08 20 - Spelling, AutoCorrect, and Reference Tools: Changing Proofing Language for an Entire Presentation in PowerPoint (Glossary Page)

Changing Proofing Language for an Entire Presentation in PowerPoint 2013 for Windows Changing Proofing Language for an Entire Presentation in PowerPoint 2011 for Mac Changing Proofing Language for an Entire Presentation in PowerPoint 2010 for Windows

You May Also Like: Simple Countdown in PowerPoint | Military and Defence PowerPoint Templates

Popular Posts

Formatting Outlines for Shapes (Dashes) in PowerPoint 2013 for Windows

Jigsaw Shapes for PowerPoint (Full Slide Jigsaws)

This entire kit contains 5 different styles of jigsaw pieces: typical jigsaws, arrows, hearts, ovals, and rounded squares. Each jigsaw shape is available in three counts: small, medium, and large. We made these available in two slide sizes for both standard (4:3) and widescreen (16:9) resolutions.

You can get this kit for only $9.99 .

Microsoft and the Office logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries.

Home | PowerPoint | Photoshop | PowerPoint Templates | PowerPoint Tutorials | Blog | Notes | Ezine | Media Kit | Feedback | Site Map | About Us | Contact Us Link to Us | Privacy | Testimonials PowerPoint Backgrounds | Christian PowerPoint Backgrounds | Business PowerPoint Presentation Templates

Plagiarism will be detected by Copyscape

Home Blog PowerPoint Tutorials How to Change Language in PowerPoint

How to Change Language in PowerPoint

cover for how to change language in PowerPoint

People who require juggling multiple languages to suit their professional needs can often find a single language inadequate for their PPT and the interface. This might mean switching between the proofing language to check spelling and grammar, as well as the interface language to adjust it to editing needs. Below are instructions on how to change language in PowerPoint.

If you are a Google Slides user looking for this solution, please refer to our article on how to change language in Google Slides .

Should I change Proofing Language or Interface Language?

PowerPoint enables using multiple languages that you can switch between to match your presentation needs. Most commonly, users require to change the proofing language in PowerPoint, which means changing the grammar checker assigned language. 

In case you are working at a remote location with a borrowed computer, you may be required to change the interface language of PowerPoint, as it would feel uncomfortable to locate menus or specific tools.

Check below for the instructions to change both the language interface and proofing language in PowerPoint.

How to Change PPT Language Interface in PowerPoint

To change the language of the PowerPoint interface on a PC, go to Review > Language > Language Preferences .

Note: Follow the following instructions for other devices:

  • Mac: If you are using Mac, you can change the interface language via the Apple menu from System Preferences > Language & Region . 
  • iPhone/iPad/Android: iOS and Android users, by default, will see the language set for their device as the default language in PowerPoint.
  • PowerPoint for the Web: If you are using PowerPoint for the Web, it uses the same language as the host app of your documents, such as OneDrive, SharePoint, Dropbox, etc.

find the language preferences in PowerPoint to change language interface

The Language Preferences option provides a menu from which you can choose the language you intend to use from the Office display language menu. The menu allows adding the new and preferred language and the one to be used if the text is unavailable for the primary language. To remove a specific language from the list, select it from the Office authoring languages and proofing menu at the bottom and click Remove .

adding a new language to change language interface in PowerPoint

If you are installing a new language, it will take a few minutes before it is installed and ready for use.

selecting a new language in PowerPoint from the available languages and variants

You can switch between languages anytime by following the same steps and managing your preferred list for the interface.

setting language preferences in PowerPoint

The selected language will become available for PowerPoint and other Office apps such as Word and Excel. The default preferences you set will also be applied across your Office apps.

PowerPoint's interface shown with changed language

How to Change Proofing Language in PowerPoint

Whether you’re using PowerPoint on a PC or an Android or iOS device, you might have multiple keyboards installed to type in various languages when creating PPTs for different audiences. To set and change the proofing language, go to Review > Language > Set Proofing Language on a PC or Tools > Language on Mac. If you’re using PowerPoint for the Web, go to Review > Spelling & Grammar > Set Proofing Language .

setting proofing language in PowerPoint

In the dialog box, select the language for checking spelling and grammar. When selecting a proofing language, you can also set a default language.

picking the proofing language in PowerPoint

Once selected, PowerPoint will check the spelling and grammar in your desired proofing language. PowerPoint provides the utility to choose between specific languages and the version of the language preferred by the user (e.g., European or Latin American versions of Spanish).

correcting grammar and spelling in a different language in PowerPoint

Like this article? Please share

Presentation Tips, Presentations Filed under PowerPoint Tutorials

Related Articles

Discovering Coaching Presentation Tools

Filed under Business • April 10th, 2024

Discovering Coaching Presentation Tools

Discover the best PPT templates to use as coaching presentation tools with this article. Tools explained + examples.

How to Share a Google Slides Presentation

Filed under Google Slides Tutorials • March 22nd, 2024

How to Share a Google Slides Presentation

Optimize your presentation delivery as we explore how to share a Google Slides presentation. A must-read for traveling presenters.

How to Create Presentations with AI using ChatGPT

Filed under Education , Presentation Ideas • January 1st, 2024

How to Create Presentations with AI using ChatGPT

We tested ChatGPT for helping us create better presentations. Join us in this article to know a first-hand experience on AI content generators and their potential role for presenters.

Leave a Reply

how to change the language of an entire powerpoint presentation

how to change the language of an entire powerpoint presentation

How to change your language settings in Microsoft PowerPoint in 3 different ways

  • You can change the language in PowerPoint in three different ways to help with editing or translating, or to set your display settings in another language. 
  • To change the language settings in PowerPoint for editing purposes, you'll need to access the "Language..." option in the "Tools" tab. 
  • To translate text, you can launch the Translator tool instead.
  • If you're looking to change the display language, you'll have to change your operating system settings. 
  • Visit Business Insider's Tech Reference library for more stories .

If you want to change the language in PowerPoint, the presentation program offers you three different options depending on what you need. 

You can change the editing language, which tells PowerPoint how to edit text as you type in your preferred language. This may prove particularly helpful if you've been sent a slideshow to edit that's written in another language. 

You can also select "Translate…" to use the Translator tool on text in real-time, though Microsoft Office notes that this feature is only available for users with an Office 365 subscription, Office 2019 for Mac or Windows. This feature allows you to highlight entire text boxes or individual words and transform your presentation text any of the languages PowerPoint offers. 

Lastly, you change the display language on PowerPoint by altering your operating system's language setting. On a Mac, depending on the language, you may be asked to add input sources.  

None of these options affects the others, so you can have different languages for edits, slide text, and display. Here's how to change all three language settings in PowerPoint.

Check out the products mentioned in this article:

Microsoft office (from $149.99 at best buy), apple macbook pro (from $1,299.00 at apple), acer chromebook 15 (from $179.99 at walmart), how to change the powerpoint editing language.

1. Open PowerPoint on your Mac or PC. 

2. Click the "Tools" tab on the top menu.

3. Select "Language…" from the dropdown menu.

4 . In the pop-up window that appears, scroll and select a language from the list. 

5. Check the box for "Do not check spelling or grammar" if you don't want PowerPoint to use the language for proofreading. 

6. Click the "Set As Default" button if applicable.

7. Click the "Yes" button to proceed.

How to use the PowerPoint Translator Tool for text

1. Open PowerPoint and click "Tools."  

2. Choose "Translate..." from the dropdown menu. 

3 . The "Translator" window on the right side of your presentation screen will open. 

4. Click a text box that you'd like to translate. The text will appear in the white box in the Translator window. 

5. Select a language from the "To:" dropdown menu. The translated text will appear in the blue box below.

6. Click "Insert" to insert that translated text in a new text box on the slide. You can then move the text box and resize it as needed.

7. You can also highlight individual words or sentences with different translations appearing below the blue box, depending on the context. Click the three dots to view a sample sentence. 

8. Choose "Insert" when you're ready to substitute.

How to change the PowerPoint display language on Mac

1. Click the Apple icon on your Mac. 

2. Select "System Preferences…" from the dropdown menu. 

3. Click the "Language & Region" option in the first row. 

4. Toggle to the individual "Apps" menu. 

5. Click the (+) icon in the lower right of the window.

6. Select "Microsoft PowerPoint" from the "Application:" dropdown menu.

7. Select your preferred language from the "Language:" dropdown menu below.

8. Click the "Add" button.

9. Restart the app when prompted. 

How to change the PowerPoint display language on PC

1. Sign on to an Administrator account.

2. Select the Start button.

3. Choose Settings.

4. In the window, click Time & Language.

5. Select the Language option. 

6. Choose a language from the Windows display language dropdown. 

how to change the language of an entire powerpoint presentation

Related coverage from Tech Reference :

How to download and access microsoft powerpoint on your mac computer, how to convert google slides to a powerpoint presentation in 4 easy steps, how to embed a youtube video into your microsoft powerpoint presentations using a mac or pc, how to convert a powerpoint to google slides in 2 different ways, yes, you can use microsoft word on a chromebook — here's how to install it.

how to change the language of an entire powerpoint presentation

Insider Inc. receives a commission when you buy through our links.

Watch: 45 ways to eat eggs

how to change the language of an entire powerpoint presentation

  • Main content

how to change the language of an entire powerpoint presentation

  • All Templates
  • Infographics

How To Change The Language Of PowerPoint: A Complete Tutorial

  • October 2, 2023

author-avatar

PowerPoint is an easy-to-use program with an interface similar to other Microsoft Office Programs. Even better, it allows you to create presentations in different languages for use by a mixed global audience. But how do you change the language in PowerPoint?

There are three methods on how to change the language of PowerPoint. For starters, you can modify the language for selected texts in the presentation. Alternatively, you can modify the language for the whole application. You can also alter the language for a particular presentation.

So, do these methods work? In this step-by-step guide, we will discuss all of this and more. 

How To Change The PowerPoint Language?

As I said, There are at least 3 ways you can alter the language of PowerPoint. Let’s discuss how each works.

Method 1: Change The Language For Specific Text In A Presentation

This is the easiest method of changing your PowerPoint’s language by choosing a specific text. It involves the following:

Step 1: Start your PowerPoint application and select “New” . Then, click on “Blank Presentation” .

how to change the language of an entire powerpoint presentation

Step 2: Next, highlight the text on the presentation that you would like to change the language. If it is the entire text, right-click on the text and press “Ctrl + A” on your keyboard if using a Windows computer. But if using a Mac, press “Command+A” .

how to change the language of an entire powerpoint presentation

Step 3: From the left sidebar at the bottom of your PowerPoint window, Choose “Language” . A new pop-up window will appear with different languages.

how to change the language of an entire powerpoint presentation

Step 4: Choose your preferred language from the list and click “Default” . On the popup window that appears, click “Yes” to set the language. Then, press the “OK” button. Your presentation should now appear in the new language.

how to change the language of an entire powerpoint presentation

Method 2: Change The Language for The Entire PowerPoint Application

In this method, you get to modify the editing and display language for the whole PowerPoint and Microsoft Word applications. Here is how to do it.

Step 1: Open your PowerPoint on your Windows computer. Here is how it should look like:

how to change the language of an entire powerpoint presentation

Step 2: Once you have opened the application, click on “Options” at the bottom part of the left sidebar. 

how to change the language of an entire powerpoint presentation

Step 3: A pop-up window will appear after clicking ‘’Options”. Select “Language” on the left sidebar.

how to change the language of an entire powerpoint presentation

Step 4: Under the Office Display Language, choose your desired language if it’s already in the menu. Then, click on “Set as Preferred” from the right sidebar and press “OK” .

how to change the language of an entire powerpoint presentation

Step 5: Next, a pop-up window will appear, asking you to restart Office so the language modifications can be implemented. Click the “OK” button and close your PowerPoint application. Then, open the program again. 

how to change the language of an entire powerpoint presentation

Step 6: If your preferred language is unavailable, click “Add a Language” from the right sidebar. Then, choose the language you want to use from the list and click “Install” .

how to change the language of an entire powerpoint presentation

Step 8: After installing the new language, this pop-up window will appear. Click “Continue” to close and restart your PowerPoint application and allow the modifications to take effect.

how to change the language of an entire powerpoint presentation

Method 3: Change The Language For A Specific Presentation

This is also a relatively easy way to alter the language of PowerPoint, but only for a particular presentation. Here are step-by-step instructions on how it works:

Step 1: Start your PowerPoint application. Then, click on the tab “New” from the top left sidebar. Next, choose “Blank Presentation” .

Step 2: On the top menu, click the “Review” tab if you have a Windows computer. If using a Mac, select the “Tools” tab instead.

how to change the language of an entire powerpoint presentation

Step 4: A new language dialog box will pop up. From the Office Display Language, choose your desired language. Then, click on “Set as Preferred” from the right sidebar. Next, press the “OK” button.

how to change the language of an entire powerpoint presentation

Step 6: If you would like to alter the proofing language, select your preferred under the Office Authoring Languages and Proofing. Then, click on the “Set as Preferred” button. 

how to change the language of an entire powerpoint presentation

Step 8: If your desired language is unavailable in the Office Display Language list, click on “Add a Language” to install it. 

how to change the language of an entire powerpoint presentation

If you are using a Mac computer, watch this video on how to change the PowerPoint language:

Troubleshooting Tips for Changing PowerPoint Language

Sometimes, you may experience problems while trying to change the language of PowerPoint. Below are a few troubleshooting tips that could help you.

  • Before attempting to alter the language, ensure your Office 365 subscription supports the language you want to use for PowerPoint.
  • Make sure your PowerPoint application is up-to-date. Outdated versions may have bugs or compatibility problems.
  • If you have set multiple language preferences in PowerPoint, try clearing them and restart the program. Then, modify the language.
  • Clean the cache and delete any temporary files related to PowerPoint.
  • Delete and reinstall the Microsoft Office, including PowerPoint. This could help fix any corrupted files, causing the issue.
  • Alternatively, restart your PC and try to alter the language once more.
  • If all the above options don’t yield results, you can reach out to Microsoft Support for further assistance.

When presenting to a diverse audience from different countries and cultures, knowing how to change PowerPoint language is crucial. It is the only way to serve them better. The good news is that there are several easy ways to make the modifications.

However, some methods only allow you to modify the language for selected text and others for the entire presentation. So, you must carefully choose the best one that matches your needs. With that said, if you counter challenges while trying to alter the language, there are various troubleshooting tips to help you.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Save my name, email, and website in this browser for the next time I comment.

how to change the language of an entire powerpoint presentation

  • Login / Register

Username or email address  *

Password  *

Lost your password? Remember me

No account yet?

Blog > How to change languages in PowerPoint

How to change languages in PowerPoint

01.01.20   •  #powerpointtips.

In this post you will learn how to change languages in PowerPoint. Watch our video-tutorial or follow the steps listed down below!

First, select File in the PowerPoint menu. Then go to Options – a window will open. Select Languages . You can change both editing language (to check spelling and grammar) and display language (defines language of tabs and features). If your desired language is already in the menu, you can simply click on it and then select Set as default – Close PowerPoint and restart – your language should be changed now, and you are all done. If you cannot find the language you want, click on Get more display and help languages from Office.com and proceed with the next step.

how to change the language of an entire powerpoint presentation

The Office-webpage now opens. Scroll down a little and you will see a selection box that asks you what language you need. Choose the one you want. In a grey box, two different versions for download show up: 32-bit and 64-bit. To check which one you need, simply go to your computer settings > System > About . Under Device Specifications , you will see whether you have a 32 or 64-bit operating system. Download the version that matches it.

how to change the language of an entire powerpoint presentation

Install the language you just downloaded. To do so, just follow the instructions you get during the installation process. Once that is finished, we will repeat what we did in the first step ( File > Options > Languages ) Your new language should appear now. Click on it, press Set as default and close the Options-window. Next time you start PowerPoint, the language will be changed.

how to change the language of an entire powerpoint presentation

How can I change the language in PowerPoint?

Related articles

About the author.

how to change the language of an entire powerpoint presentation

Pia Lehner-Mittermaier

Pia works in Marketing as a graphic designer and writer at SlideLizard. She uses her vivid imagination and creativity to produce good content.

how to change the language of an entire powerpoint presentation

Get 1 Month for free!

Do you want to make your presentations more interactive.

With SlideLizard you can engage your audience with live polls, questions and feedback . Directly within your PowerPoint Presentation. Learn more

SlideLizard

Top blog articles More posts

how to change the language of an entire powerpoint presentation

PowerPoint Quiz Templates - 10 free Quiz Designs

how to change the language of an entire powerpoint presentation

Blue Alps - Free PowerPoint Template

SlideLizard Live Polls

Get started with Live Polls, Q&A and slides

for your PowerPoint Presentations

The big SlideLizard presentation glossary

Tutorials are videos with instructions that show how for example a product or a software works.

Web-Based-Training (WBT)

Web-Based-Training (WBT) is an older term for learnmethods that can be accessed over the internet.

Vertical Communication

Vertical communication means that information is passed from one person to the next according to a linear system based on their titles. This type of communication is used when a company follows a hierarchical structure or for important, sensitive information.

Normal view (slide view)

The normal view or slide view is the main working window in your PowerPoint presentation. You can see the slides at their full size on screen.

Be the first to know!

The latest SlideLizard news, articles, and resources, sent straight to your inbox.

- or follow us on -

We use cookies to personalize content and analyze traffic to our website. You can choose to accept only cookies that are necessary for the website to function or to also allow tracking cookies. For more information, please see our privacy policy .

Cookie Settings

Necessary cookies are required for the proper functioning of the website. These cookies ensure basic functionalities and security features of the website.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information about the number of visitors, etc.

  • Slide Library
  • Slide Library for PowerPoint
  • Downloadable slides and shapes
  • Slide Library search
  • Search Library via shortcut keys
  • Slide Library update alerts
  • Rename or delete objects
  • Share Slide Library
  • Save slides or shapes to Slide Library
  • Save presentation to Slide Library
  • Manage Templates
  • View all templates and set default
  • Agenda Wizard
  • Create Agenda Slides
  • Update Agenda Slides
  • Agenda Slide Numbering
  • Navigate via Agenda
  • Table of Contents
  • Import Agenda Items
  • Save Agenda Format
  • Manage Colors
  • Color Palette Toolbar
  • Customize Color Toolbar
  • Apply fill with outline color
  • Recolor Charts
  • View RGB color values & names
  • Theme Color Tints and Shades
  • Share Color Palette with team
  • Insert Shapes
  • Standard PowerPoint shapes
  • Callouts / Speech Bubbles
  • Hand Drawn Circles
  • Harvey Balls
  • Create Mini Slides
  • Move to Multiple Slides
  • Right Facing Centered Triangle
  • Status Indicators
  • Arrange and Align Shapes
  • Select same color or size
  • Select shapes by attribute
  • Align shapes
  • Align to first selected shape
  • Choose Align anchor point
  • Align using shortcut keys
  • Copy paste position multiple shapes
  • Straighten Lines
  • Swap positions
  • Distribute evenly
  • Set Horizontal Gaps
  • Set Vertical Gaps
  • Squeeze or expand gaps
  • Remove gaps
  • Group Objects by Row
  • Group Objects by Column
  • Send to back, bring to front
  • Send backward, bring forward
  • Flip or rotate
  • Group, ungroup and regroup
  • Edit Shapes
  • Same height, same width
  • Copy paste position, size
  • Resize shapes
  • Slice shapes
  • Multiply shapes
  • Stretch shapes and fill gaps
  • Toggle line weight and style
  • Change margins toggle
  • Chevrons same angle
  • Paragraph Styles
  • Save Paragraph Styles
  • Apply Paragraph Styles
  • Use PowerPoint Indent Increase/ Decrease to apply bullet styles
  • Reset Paragraph Styles
  • Ticks and Crosses bullets
  • Paint Formatting
  • Advanced Format Painter
  • Position & Size Painter
  • Table Format Painter
  • Style Painter
  • Text Format Painter
  • Change Shape Painter
  • Chart Format Painter
  • Angles & Curves Painter
  • Animation Painter
  • Cycle Accent Colors
  • Format Text
  • Fit text to textboxes
  • Wrap Text Toggle
  • Merge Textboxes
  • Split Textboxes
  • Increase/ Decrease Font size
  • Change Text Case
  • Color Bold Text
  • Delete Text or Replace
  • Insert Superscript text
  • Format Tables
  • Create table from text boxes
  • Convert table to text boxes
  • Convert text to table
  • Insert columns and rows
  • Paste Excel data without source formatting
  • Paste Excel data into text box tables
  • Export Table or Box Table Data to Excel
  • Set cell margins
  • Express Table layout
  • Table stripes
  • Autofit columns
  • Evenly space columns
  • Align shapes over tables
  • Harvey Balls for Tables
  • Status Indicators for Tables
  • Customizable PowerPoint Shortcuts
  • Extra PowerPoint shortcuts
  • Add PowerPoint shortcuts
  • Search shortcut keys
  • Reassign PowerPoint shortcuts
  • Reset PowerPoint shortcuts
  • McKinsey PowerPoint shortcuts
  • F4 or Ctrl+Y redo or repeat
  • Printable PowerPoint Shortcuts PDF
  • How to Print a Custom Shortcuts list
  • Search Shortcut Keys
  • Searchable PowerPoint Shortcuts list
  • Format Toolbar Overview
  • Format Toolbar Layout Options
  • Lock or Unlock Objects
  • Lock objects
  • Lock objects to the Slide Master
  • Unlock objects
  • Proofing Tools
  • Check Formatting
  • Check Fonts
  • Check Template
  • Check Slide Layout
  • Check Content
  • Check Punctuation & Spacing
  • Reduce File Size
  • Flip Slides
  • Set Proofing Language
  • Change set language for PowerPoint presentations
  • Slide Numbering
  • Manage Slide Numbering
  • Slide Numbers with totals
  • Add words to Slide Numbers
  • Change Starting Slide Number
  • Skip Slide Numbers on Hidden Slides
  • Slide Navigator
  • Footers & Footnotes
  • Filename Footer
  • Enlarge Footnotes
  • Refine Slides
  • Add summary slide
  • Format slide title
  • Display No Fly Zone
  • Send slide to appendix
  • Camouflage mode
  • Format Painter
  • Set Grayscale
  • Format Images
  • Compress file size
  • Format Charts
  • Charts Toolbar
  • Config Options
  • Customize Settings
  • Dark Mode Display
  • Review Slides
  • Customizable Status Stamps
  • Sticky Notes
  • Tag slides with filename and page number
  • Share Slides
  • Email selected slides in PPT or PDF format
  • Print selected slides
  • Save selected slides
  • Slide Library for Teams
  • Team Slide Library
  • Create multiple Team Slide Libraries
  • Synchronize Team Slide Libraries
  • Synchronize Team Slide Library to your company Dropbox/ Box/ OneDrive folder
  • Updating your Team Slide Library
  • Import entire presentation to the Slide Library
  • Share Slide Library with a colleague
  • Share Custom Settings
  • Share Custom Settings with Team
  • Getting Started
  • Getting started with PPT Productivity add-in for PowerPoint
  • Downloadable PowerPoint Elements for Slide Library
  • Tutorial - How to Create Custom Paragraph Styles for PowerPoint
  • Can I use PPT Productivity on a Mac?
  • PPT Productivity Basic Tools Tutorial
  • PPT Productivity Plus Tools Tutorial
  • New Features
  • August 2023 update: Color Toolbar enhancement, new icons and more
  • February 2023 update: New Slide Libraries available to download!
  • January 2023 Update: Agenda Wizard, Format Painters + More
  • How to copy and paste formatting in PowerPoint
  • PowerPoint How To
  • What are the most popular PowerPoint shortcuts?
  • Where are PPT templates stored? Finding templates in PowerPoint
  • Pasting data into a PowerPoint table without source formatting?
  • Consulting Toolkit
  • How to create effective consulting slides using Minto Principles
  • Missing the McKinsey PowerPoint Shortcuts?
  • Missing the Accenture QPT for PowerPoint?
  • Missing the BCG PowerPoint Tools?
  • Missing the Bain Toolbox for PowerPoint?

How to add Stamps or Stickers to PowerPoint slides?

  • Looking for a Consulting PowerPoint Toolbar?
  • Top 10 PowerPoint Hacks / Shortcuts used by strategy consultants
  • PowerPoint Tips

Set PowerPoint Proofing Language for all slides or a selection

  • June 15, 2020

Lee-Ann

Easily set all your existing slides to the same language in PowerPoint using PPT Productivity add-in , including shapes or objects on slides and the notes pages! This feature is especially useful for anyone working in countries like Canada or Switzerland where multiple official languages are used, or for companies where teams are collaborating from different countries. But it's also useful to ensure a consistent type of English is used throughout your presentation (eg UK English vs US English).

Set Proofing Language determines the dictionary for spell checking that is used - this is what determines whether words appear with a red squiggly line beneath them. Standard PowerPoint does not include an option to change the language easily for an entire presentation to make proofing or reviewing easier. If you try to update the set language in Standard PowerPoint, you need to apply it for each textbox. But PPT Productivity add-in for PowerPoint solves this problem and gives you a feature to change the set proofing language for all slides in PowerPoint . Or for selected slides or shapes - you have options!

Standard PowerPoint Change Language for all slides

In standard PowerPoint, to change language for all slides you need to:

  • Select all slides by pressing CTRL+A (from the Thumbnail pane in Normal view or from the Slide Sorter view)
  • Navigate to the Review tab on the ribbon and Click the Language button
  • Click the Set Proofing Language menu option
  • Select the language you would like to use as the proofing language

This standard PowerPoint option will update the language for titles and textboxes as defined in the slide layouts. But the standard PowerPoint feature will not include text boxes added to your slides, shapes added to your slides with wording, or the text in handout notes for each slide . This is why we created the change set language feature in PPT Productivity for PowerPoint .

How to change language in PowerPoint for spell check review for entire presentation?

With PPT Productivity you can set the proofing language for the entire presentation , a specific slide, or individual shapes. Using the PPT Productivity Proofing Language drop-down menu you can change the language in PowerPoint. You can:

  • Set the Default Proofing language for your presentation
  • Select the shapes/ slides to update language - all text-boxes in the selection, including any text-boxes in Grouped shapes, will be set to the Default Language of your presentation
  • Convert all shapes in all slides to your Default Language
  • Change language for all slides or a selection of slides or shapes
  • When you change language for the entire presentation or selected slides, the set language for notes in these slides will also be updated

To do this, you simply select either the Set all slides language or Set selected slides/ shapes language features from the PPT Productivity Ribbon. Watch a brief demonstration of the Set proofing language features in the video below.

Take a look and let us know what you think.

Head to our home page to download a free trial now!

demo

Want to see our tools in action?

Book a personalized demo with our PowerPoint professionals

trial

Download 30 Day Free Trial

Download your 30 day free trial - Microsoft Office for Windows

Related productivity tips

How to add Stamps or Stickers to PowerPoint slides?

Looking for PowerPoint stamps and stickers? Perhaps you’ve come out of one of the top tier ...

Need a Beautifying/ Proofing tool for PowerPoint?

Need a Beautifying/ Proofing tool for PowerPoint?

We are excited to let you know we are currently working on Beautifying/ Proofing tools for PPT ...

Can I lock a shape, image or object in PowerPoint? Yes!

Can I lock a shape, image or object in PowerPoint? Yes!

With PPT Productivity add-in for PowerPoint you can now lock shapes, images or other objects in ...

PresentationLoad

Changing Languages in PowerPoint

Looking to wow your colleagues, boss or maybe your fellow students with your presentations? Then Microsoft PowerPoint is probably your go-to choice. Thanks to this program, you can breathe new life into even the driest topics and guarantee your audience an entertaining presentation.

One really handy PowerPoint feature is its language settings and built-in spell checker. It’s like having your own personal, real-time proofreader.  

But what if you have to write your presentation in a different language? No problem – you can change the language settings with a few simple clicks. We’ll show you exactly how this works, how to change a slide to English and everything else you need to know about changing the language in PowerPoint.

In addition, we’ll explain the limitations of PowerPoint’s language capabilities and how using a spell check language switcher add-in can save you a lot of time and hassle.

Changing languages in PowerPoint – it’s easy

While PowerPoint is extremely useful, some people aren’t familiar with it and find it a bit too complicated. If this sounds like you, here’s something that may surprise you: it only takes a few clicks to change languages. Even complete computer newbies will find it easy. We’ve prepared a step-by-step, foolproof guide for you. Here’s what to do:

Once you have Microsoft PowerPoint open, you’ll see the File tab at the very top left of your document. Click on it once.

A panel will open with a list of actions to choose from. At the very bottom left of this list, you’ll find Options . Click it once to open the Options window.

Now click Language . This will open a long list of different language functions to choose from. But what exactly do they do?

Editing language

The authoring language is the one used in the document. The authoring language you select will be detected by the spelling and grammar checker. After making your selection, be sure to click Set as Default to finalize your choice.

Display and help language

The display and help languages specify which language is used for the entire PowerPoint menu. Normally, both should be set to the same language. To change these, select a language from the list then click on Set as Default .

You’re all set! Your language preferences will remain active until you make another change. And since PowerPoint belongs to MS Office, your changes will apply to other programs, like Word, too.

powerpoint-language-settings

Changing language on all slides in PowerPoint

Maybe you’ve already created a presentation and want to change the language setting to proof it. Or maybe you have a document that was written in a different language than the one currently used by your Office programs.

Does this mean you have to rewrite everything or painstakingly double-check every red, squiggly line in the document?  Thankfully, no. In fact, you can change the language and apply it to documents that have already been written. Here’s how that works.

Open your PowerPoint presentation and click the View tab. This is located at the top in the same row as File and Start .

Select Outline View . A small pane will open on the left displaying only the text for all slides in the presentation.

Hit Crtl + A , click the Review tab and make your selection under Language .

Changing the language for specific text passages in PowerPoint

Maybe you have some quotes in your presentation in a different language and you want to make sure the spelling and grammar are correct.  It’s not a problem in PowerPoint. Just follow these steps:

Highlight the text passage in the other language with your mouse.

Click the Review tab at the top of the screen.

You can now change the language settings for the selected text passages. It’s that simple.

Change language settings in PowerPoint for Mac

If you’ re looking for how to make these same changes in PowerPoint for Mac, we’ve got you covered.

Open PowerPoint and go to Tools > Language .

Select the language you would like to work in and click Ok .

Select Default to make it the default language for all new documents.

Change the language for individual text passages in PowerPoint for Mac

Changing the language for selected text passages is no problem at all.

Go to menu item: Tools > Language…

In the Mark selected text as box , select the language from the list.

But what happens if you want to use more than two languages in your presentation? Here’s where the program reaches its limits, quickly becoming overwhelmed and confused. Not to worry though, we have the perfect solution to that problem.

Language Add-in for PowerPoint

If you work often with Office programs, chances are you’re a fan of the built-in spell check function. But, if you’ve ever had to prepare a PowerPoint presentation that uses not one, but several languages, then you’ve probably noticed that this spellchecker does have limitations .

Sure, you could mark each text passage, change the language setting and rinse and repeat until you’ve checked the entire document.  But do you really want to invest so much time and work when there’s an easier solution out there? Thanks to the Spell Check Language Switcher add-in , this painstaking work is no longer necessary. You can find the Add-In here .

Change language settings with just one click

The Spell Check Language Switcher add-in makes changing language settings easy. You can quickly change individual text fields, grouped elements, notes and even tables to the language of your choice. The add-in provides four different language buttons in the Review tab.

You can change the default languages (German, British English, American English and French) according to your own preferences. Other available languages include Russian, Chinese, Spanish, Greek and Turkish.

spell-check-language-switcher-add-in

With the Spell Check Language Switcher add-in, you can:

  • run a quick spell check in multiple languages.
  • quickly access your four preferred languages.
  • spell check all slide content – from bullet points, tables and more.

The Spell Checker Language Switcher add-in is compatible with all PowerPoint versions from 2010 on and is installed in seconds. Once you decide to use this program, we’ll email your license key within 48 hours. Click here to get the Add-In.

Changing languages in PowerPoint is easy

Changing languages in PowerPoint is no big deal and requires no expertise. Just follow our step-by-step, hassle-free instructions.  

It only starts to get tricky when different languages are used in the same document. If you’ve faced this problem and want to avoid marking every single language and changing the settings, the Spell Check Language Switcher add-in is definitely the right tool for you. With this tool, language changes with a simple click. Nothing will stand in the way of stress-free preparation and a successful presentation.

Share this post

  • share  
  • save  

how to change the language of an entire powerpoint presentation

Design Thinking: Problem Solving with a Difference

vision-mission-statement

Why Corporate Mission Statements Are So Important

7 Learnings from the apple keynote

7 Tips & Learnings from the Apple Keynote

Ampler

  • Your organization A tailored solution to unlock your organization’s full potential
  • Your tools Tools for achieving excellence in your work
  • Your content Unlimited content available directly in Office
  • Your IT Future proof software to leverage your IT infrastructure
  • PowerPoint Perfect presentations at a fraction of the time
  • Excel Workbooks and models with rigorous error checking
  • Word Document formatting made simple
  • Outlook Outstanding collaboration coming to you soon...
  • Charts Beautiful PowerPoint charts at a click
  • Guides and tutorials
  • Book a demo

How to change language in PowerPoint

If you create PowerPoint presentations in different languages from time to time you’ll know that the language settings can change – seemingly unpredictably – as you work. Indeed, if you have ever created a PowerPoint presentation in another language than the one you usually use, this has probably happened to you.

This guide will teach you how to set the text (authoring and proofing) language in a PowerPoint presentation. Also, you will learn how to change the language of buttons and menus, and how to install a new language.

Change text language in PowerPoint

There are a few ways to change the text editing language in Microsoft Office PowerPoint which will set the proofing language for your spelling and grammar check. The simplest is the following:

  • Select the text you are working on
  • Click the ‘Language’ button to the left in the Status Bar at the bottom of your PowerPoint window ( or go to the ‘Review’ tab, ‘Language’ group, click ‘Language’, select ‘Set Proofing Language’ in the drop-down menu)
  • Select the language you want
  • Click ‘Ok’

how to change the language of an entire powerpoint presentation

Setting the same editing language for all text boxes and shapes on a single slide :

  • Click on the slide
  • Press ‘Ctrl-A’ to select all elements on the slide
  • Click the ‘Language’ button to the left in the Status Bar at the bottom of your PowerPoint window
  • Select your the language you want
  • Press ‘Ok’

You can continue to do this for all your slides, but if you are working on a large presentation this might not be very practical. In that case, you can try the following.

Change language of placeholders across all slides in a PowerPoint presentation :

  • Go to the ‘View’ tab
  • Select ‘Outline View’ in the ‘Presentation Views’ group to the left
  • Click on a slide in the view pane to the left
  • Press ‘Ctrl-A’ to select all slides

This will change the language of all placeholder elements in your presentation. These include elements that have been defined in your slide master, e.g., tagline placeholders, text placeholders, content placeholders, etc. Unfortunately, any text boxes, shapes, or other elements, that have been added to the presentation and are not present in the slidemaster used will not be affected. In this case you need to change the language of each slide as described above or use an addin such as Ampler for PowerPoint which automatically sets the language across the entire presentation.

Change the language of buttons and menus in Microsoft Office PowerPoint

To change the display language in PowerPoint, i.e., the language of buttons, menus and controls, follow these steps:

  • Go to the ‘File’ tab
  • Select ‘Options’ in the menu to the left
  • Select ‘Language’ the menu to the left in the dialog box
  • Select the default language you want
  • Select ‘Set as Preferred’

how to change the language of an entire powerpoint presentation

If the language you want is not listed, follow the steps below.

Add a new language

If your preferred display language is not available in PowerPoint, you can download and install it from the Microsoft Office support page. This is also the case if you change the text language of a PowerPoint presentation and the spelling and grammar check does not seem to work (you will not get an error message if your language is not installed). Just follow these steps to add a new display or proofing language:

  • Select the ‘Install additional display languages from Office.com’ link
  • Follow the instructions on the webpage

This will guide you through download and install of display, help, and proofing tools for the language you want. Be aware that all install menus will also be in the selected language!

Automatically set language of all slides in a PowerPoint presentation (and keep it!)

how to change the language of an entire powerpoint presentation

The above steps might help you in setting a language for your PowerPoint presentation, but to change the language for all elements on all slides across your presentation, you need to do a lot of manual work. This is one of the main reasons I use Ampler for PowerPoint.

Ampler automatically sets the language for all elements on all slides in your entire presentation with just a click – no need for all the tedious, manual formatting!

Free trial download here:

Ampler for PowerPoint

Ampler

  • Privacy policy

Why Ampler?

  • Your organization
  • Your content

Get Started

This website uses cookies in order to improve the user experience. When you continue to use this site, you accept the use of cookies. Read more about our cookie policy here .

  • Slidesgo School
  • PowerPoint Tutorials

How to Change the Display Language in PowerPoint

How to Change the Display Language in PowerPoint | Quick Tips & Tutorial for your presentations

If you want to change the display tongue in PowerPoint, this is your tutorial. No matter if you have downloaded a version of the software with the incorrect default language or you want to improve your reading skills, we will teach you, step by step, how to do it. 

Setting a new preferred language in PowerPoint

Installing additional display languages in powerpoint, changing the language for office 2016 or earlier versions, changing the language of powerpoint proofing tools.

Ready to choose a new preferred language for PowerPoint? It’s as simple as following the next steps. 

  • In the toolbar, go to Files → Options.
  • Then, in the left menu, click on Language.
  • In the section Office display language, click on any of the options from the list and, then, click on Set as preferred.
  • If you want to match the tongue of Office with the one of your own Microsoft Windows, click on Match Microsoft Windows.
  • Then, a popup window appears. It will ask you to relaunch the program to apply the changes.
  • Close the program and open it again. Remember to save the changes if you modified your presentation.
  • If the tongue that you want to set as preferred is not on the list, click on Install additional display languages from Office.com.
  • Click on any of them → Install.
  • A new window will appear in your browser. It will allow you to download the linguistic module of the tongue that you have selected.
  • Click on Download.
  • The browser will show a new window. There, you can read the specifications of the selected tongue.
  • Click on Download and wait a few seconds.
  • Your browser will show the latest downloads at the bottom. Double click on the pack to install it.
  • PowerPoint will ask you to save your current work before proceeding. Click on Save. Download it as a 64-bit or 32-bit pack, depending on your Windows version.
  • Wait until it finishes, it will take a couple of minutes. Then, a popup appears to let you know that you have completed the installation. Click on Close or its translation, depending on the language. As we have selected Portuguese, you’ll see Fechar.

how to change the language of an entire powerpoint presentation

  • Now open PowerPoint again.
  • Click on File → Options → Language. The new tongue appears there. Click on it and, later, on Select as preferred. Click OK.
  • A popup window will ask you to close the program and to open it again to apply the changes. Click OK.
  • Open PowerPoint.
  • Now it displays the new language!

If you want to modify the tongue in Mac, follow these directions: 

  • To change the user interface, Go to the Apple menu.
  • Then, go to System Preferences → Language & region.
  • Select one option from the list of Preferred Languages.
  • If you are not able to find your tongue, click on + and add it. Then, restart Office.
  • To change the Editing language, press Tools → Language.
  • Pick up a tongue → OK.
  • If you want to make it Default, mark that option.
  • Open Office.
  • In the toolbar, go to File → Options → Language.
  • Click on any of the options → Set as Default.
  • If you can’t find a given tongue, press Add additional editing languages.
  • Choose one from the list → Add.

Make sure that the Keyboard Layout appears as Enabled. Otherwise: 

  • Click on Not enabled.
  • Click on Add languages → pick one one of them → Add → close the dialog box.

You also need to double check if the Proofic option is working. If it says Installed, it will work. But if it is not: 

  • Click on Not installed. Download the tongue Accessory Pack and follow the instructions. This step is pretty similar to the one in the section above.
  • In PowerPoint, go to File → Options → Language.
  • Click on the new tongue and select Set as Default or Match Microsoft Windows, if that is the Office display tongue. If you need more information on the issue, you can read this Microsoft tutorial .    

In PowerPoint, you can establish the authoring language of a text, i.e., setting the tongue in which you are going to write. It also offers a series of tools that will help you with the grammar and spelling checks. It’s very useful when making mistakes, as the software will spot them easily. Does it sound good? Let’s see how to work with them. 

  • In language options again, go to Office authoring languages and proofing.
  • As before, click on any of them and choose Set as Preferred.
  • Click on OK, and a warning window will pop up. Click OK.
  • If the one you are looking for is not in the system, click on Add a Language…
  • Choose one from the list. If you want the program to check your grammar and spelling, mark the Get proofing tools → Add. This will direct you to the installation page. Some of the tongues don’t allow you to get them, so you won’t be able to select it. For this part of the tutorial, we have chosen German.
  • Once on the webpage, click on download and wait until it finishes.
  • Open the file and a window appears to let you know that the installation is ready. Click on Close or its translation, that will vary depending on the tongue. As we have chosen German, you’ll see Schließen.
  • Close PowerPoint and relaunch it again. Go to File → Options → Language. As you can see, German is now ready for you to use.
  • Click on that (or other) language → Set as Preferred. When a window appears, click on OK. Select OK once again.

As you have seen, changing the tongue in PowerPoint is as easy as it can be! Go to the language settings and follow these simple steps. This program will correct your spelling mistakes and will help you with grammar.  If you liked our Language Learning App template , download and edit it now and, if you are looking for new templates for PowerPoint , have a look at our collection of presentations.  Remember that this tutorial is applicable to Office 365. If you have any other version, you may encounter slight differences. 

Do you find this article useful?

Related tutorials.

How to Download Google Slides Templates | Quick Tips & Tutorial for your presentations

How to Download Google Slides Templates

When preparing a presentation, many people start panicking because they realize how much time it will take to edit each and every slide. Creating them from scratch, filling them in, looking for pictures, moving the elements...How stressful! But there is a solution that saves you a lot of time. We're sure that you've browsed the internet for templates, or basically, pre-established designs and elements, that can be downloaded for free and can be edited to your liking. Are we right? Then, we have some good news for you!

Discover our collection of printable templates | Quick Tips & Tutorial for your presentations

Discover our collection of printable templates

With the advance of technology, printing has become something that is no longer a necessity. Smartphones have made the paper format less and less frequent, but there are still certain cases in which having physical resources is much more convenient. Whether it's for taking notes, handing out assignments, making worksheets or handing out business cards or invitations, it's necessary to print your customized designs.From now on, in every Slidesgo printable presentation that you download, you will find the instructions for printing on the third slide. Depending on the style, colors or format of each presentation, we will tell you if you can...

How to Add Superscript and Subscript in Google Slides | Quick Tips & Tutorial for your presentations

How to Add Superscript and Subscript in Google Slides

Let’s take the most famous formula: E=mc^2, Einstein’s relativity equation. It wouldn’t be the same if it was E=mc2, right? Okay, yes, some people write it like that because it’s very famous and it won’t be misunderstood. But technically… It can! This is where the sophistication of superscript or subscript enters the room! Do you know how to write them in equations, copyright brands or even footnotes in your presentations? Let’s figure out how.

How to Add Superscript and Subscript in PPT | Quick Tips & Tutorial for your presentations

How to Add Superscript and Subscript in PPT

It can be a registered brand, a footnote or a math formula that you need to properly write. “2^2+2” is not the same as “22+2”, is it? Using superscript or subscript in a proper way makes a whole difference in texts. If it’s for your mathematical or physics complex formulas or just an anecdotic footnote, let’s figure out how to write them in a powerpoint presentation!

Coragi

PowerPoint: Change Proofing Language for entire Presentation

how to change the language of an entire powerpoint presentation

Step 3: Activate

Changing the proofing language of the entire presentation, i.e. the editing language used by the built-in spell checker, is not a straight forward task in Microsoft PowerPoint. It is quite strange why Microsoft has not made this common task more accessible to the user. If a presentation that should be in English is originally set to French, you must manually alter each and every text frame on every slide. The “ Change Language ” add-in for Microsoft PowerPoint, however, provides an easy way to change the proofing language of an entire presentation with just a few clicks.

“Change Language” add-in

Get the add-in for Microsoft PowerPoint now.

How to use the proofing language add-in?

When the add-in has been installed and activated, the new button can be found on the  Review  tab. The  Change Language  button is located in a new group called “Coragi Language Tools”, which is to the right of the general language settings.

Change Proofing Language button on the Review menu tab.

When the “Change Language” button is pressed, the following dialog is displayed:

Change Proffing Language dialog with options.

The “Editing Languages” section lists all the installed editing languages available for Microsoft PowerPoint. It is possible to install additional editing languages if the default languages don’t fit your needs. We will come back to how you can do this later in this article. The editing languages are sorted in ascending order, and the currently active language for the presentation has been selected.

The “Range” section gives you the option to change the editing language for the “Entire Presentation” or the “Active Slide”. Usually, it is recommended to change the language for the entire presentation, since it will set the default language as well. It means that any new textboxes or shapes will use this default editing language.

When you have selected the desired editing language and the range, press the OK button. Depending on the number of slides and shapes in your presentation, setting the language can take a few seconds. The dialog is closed when the update has been completed. Now, let us show you how to get started with the “Change Language” add-in.

Prerequisites

In order to use the add-in your computer needs to satisfy the following system requirements:

  • Microsoft Windows 10 or later.
  • Microsoft PowerPoint 2010  or later.

Please notice that the add-in does not run on Mac (macOS). Only Microsoft Windows operating system is currently supported.

The web version, PowerPoint Online for Office 365, is not supported. The add-in only works with the installed client software.

Both 32 bit and 64 bit Windows operating systems are supported.

How to install the proofing language PowerPoint add-in?

This section describes how to download, enable, and use the Change Language add-in which allows you to apply a specific proofing language to all slides in a PowerPoint presentation.

In order to download, install and activate the add-in, please do the following:

Step 1: Download

Press the  Download   button above to get the PowerPoint add-in file.

Add-ins for Microsoft PowerPoint 2010 and later use the  .ppam  file extension, i.e. “ P ower P oint  A dd-in  M acro”. The file contains components that add additional functionality, including extra commands, custom macros, and new tools for extending default PowerPoint functions. This type of add-in file was first introduced in 2007 with the release of Microsoft Office 2007.

Step 2: Install

how to change the language of an entire powerpoint presentation

You can easily get access to the above “Addins” folder by typing the following shortcut path in the top text box in the File Explorer and then press the Enter key:

Shortcut to the Addins folder in File Explorer. Enter the path and press the Enter key.

You will then automatically be directed to the correct folder.

Command Prompt

Please be aware that the “…\AppData\Roaming\Microsoft\AddIns” folder is  hidden , and the full path must be entered manually. It is not possible to open the “Users” folder in File Explorer and then browse to the folder path (unless you have enabled the option to show hidden files and folders).

To open and activate the add-in file please do the following:

  • Open Microsoft PowerPoint

how to change the language of an entire powerpoint presentation

  • Now the Change Language add-in has been enabled in PowerPoint. In case you get any security warnings (“Enable Macros”), you need to press “Enable Content”. As mentioned in the beginning of this article, you can find the “ Change Language ” button on the Review tab. Press the button to change the proofing language.

How to add new editing and proofing languages?

You can enable additional proofing languages by doing the following:

You need to restart PowerPoint for the language changes to take effect.

  • On the main ribbon/toolbar, to to Files > Options

how to change the language of an entire powerpoint presentation

  • When done, select the preferred proofing language, and press the “ Set as P referred ” button.

You would have to restart PowerPoint for the language changes to take effect.

How to manually change the spell-check language of a presentation?

Using the Change Language add-in is the most time-saving way to change the proofing language of the active slide or the entire presentation. You can of course go also through the manual process of changing the spell check language for each and every slide, textbox and shape. We will now show you how to do it.

  • Select all shapes on each slide. You can press Ctrl+A on your keyboard to select all shapes on the current slide.
  • On the Review ribbon, click on the button called “ Language “, and then the dropdown menu item “ Set proofing language “
  • Select your proofing language, and press “OK”.

Manually selecting the text shapes and setting the Proofing Language on each slide.

This process has to be repeated for every slide in your presentation. This also has to be repeated for any slide masters that your presentation uses.

Our recommendation is to use the Change Language add-in to save time.

Supported proofing languages in PowerPoint

Microsoft offers a long list of spell cheking languages for Microsoft PowerPoint. If the language is currently not available on your computer, you need to install it as described earlier in this article.

' src=

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Save my name, email, and website in this browser for the next time I comment.

Related Posts

PowerPoint - Tips and Tricks

PowerPoint: How to Debug a PowerPoint Add-in?

In this article we will show you how to debug a standard PowerPoint add-in. There are two kinds of add-ins available for Microsoft PowerPoint: PowerPoint Add-in Macro (.ppam) COM add-in In this article we will explain how you can debug a standard .ppam add-in for PowerPoint. This kind of add-in is written in Visual Basic […]

Privacy Overview

PresentationSkills.me

How To Change Language In Powerpoint

how to change the language of an entire powerpoint presentation

Microsoft PowerPoint provides users with various options for customizing their presentations, including the ability to change the language used in the software. This can be helpful if you want to use a different language for your own benefit.

The default display language and authoring/proofing language in PowerPoint are set to English, but you can easily change it to another language of your choice. Here’s how:

1. Open PowerPoint and click on “Options” from the bottom left of the screen.

how to change the language of an entire powerpoint presentation

2. Select “Language” from the options menu.

how to change the language of an entire powerpoint presentation

3. If you want to change the display language, click “Add a Language” under the “office display language” section.

how to change the language of an entire powerpoint presentation

4. Select the language you want to add from the list and click “Install.”

how to change the language of an entire powerpoint presentation

5. Now, you will see a popup window. Press “Ok” in the popup window to start installing the language in the background.

6. Once the installation is complete, you can set the new language as the display language by clicking on it and then clicking “Set as Preferred” under the “office display language” section.

how to change the language of an entire powerpoint presentation

If you want to change the proofing language, here are the steps you need to follow.

1. Follow the first 3 steps from above. Click “Add a Language” under the “office authoring language and proofing” section.

how to change the language of an entire powerpoint presentation

2. Select the language you want to add from the list and click “Add.”

how to change the language of an entire powerpoint presentation

3. Then click “Set as Preferred” to set the new language as the default for authoring and proofing.

how to change the language of an entire powerpoint presentation

4. Once you have changed the languages, click “OK” to save your changes and exit the “Options” menu.

Now, all of the text in your PowerPoint presentation will be in the new language that you have selected. This can be helpful if you are presenting in a different language than English. Thanks for reading! We hope this guide was helpful.

Related Posts:

What Language Is Google Docs Written In

  • CLOUD PREMIUM New
  • Today’s Offer
  • Redeem Voucher

No products in the basket.

Course Cloud

the best place for online learning!

how to change the language of an entire powerpoint presentation

Not a member yet? Sign up

Don’t have an account yet? Sign Up

Already have an account? Log In

By signing up, I accept Course Cloud’s  Terms & Conditions

  • How to Change Language in PowerPoint for All Slides: A Detailed Guide

How to Change Language in PowerPoint for All Slides A Detailed Guide

PowerPoint is unbeatable for making a visual presentation. It is a persuasive tool for business as well as other purposes, but you have to manage it wisely. If you want to learn how to change language in PowerPoint, this blog is for you. This PowerPoint program offers you some options depending on what you need. The guide below will help you to know how to change the language in PowerPoint. Also, you will learn how to change language correction in PowerPoint.

How to Change Language in PowerPoint?

There are several ways you can change language in MS PowerPoint. It will set the proofing language for your spelling and grammar check. The simplest way how to change language in PowerPoint 2007 is given below- 

  • Highlight and select the text you want to change 
  • Look at the left in the “Status Bar” at the bottom of your PowerPoint window. Click the ‘Language’ button.                              
  • Another way is you can go to the ‘Review’ tab, ‘Language’ group, click ‘Language’, select your desired proofing language in the drop-down menu. 

Instruction screenshot

  • Then press ‘Ok.’  

By doing this, you can change the default language of your selected part.

However, you are probably interested in learning how to set the language of your entire presentation. This is a bit complex! Yet, the following tricks might help you.    

How to Set the Same Language for Everything on a Single Slide?

To set the same language for everything on a single slide, do the following: 

  • Click on the specific slide you want to work on 
  • Now press ‘Ctrl A’ to select everything on the slide 
  • Now, look at the left in the “Status” bar at the bottom of your window  
  • Click the ‘Language’ button   
  • Select the language you want to change 
  • Press the ‘Ok’ option

In this way, you can do this for all your slides. However, if you are working on a longer presentation, this might not be very practical for you. In that case, you can try the following.

How to change the Language of Placeholders Across all Slides in a PowerPoint Presentation?

To execute this properly, follow the steps below:

  • Go to the ‘View’ tab
  • Search the ‘Outline View’ option in the ‘Presentation Views’ group to the left
  • After that, click on a slide in the view pane to the left
  • Press ‘Ctrl A’ to select all slides of the presentation 
  • Now, click the ‘Language’ button to the left in the Status Bar at the bottom of your PowerPoint presentation 
  • Select the language you want to use

By following this, you can change the language of every slide in your presentation. Besides, it includes elements that have been defined in your slide master, like – tag line placeholders, text placeholders, content placeholders, etc.         

However, any text boxes, shapes, or other elements, that have been added to the slides that are not present in the slide master used will not be affected. Therefore, you need to change the language of all the slides described above or use an add-in that automatically sets the language across the entire presentation.     

How to Change Language in PowerPoint 2016?

If you want to change the language for Office 2016 or even for the earlier versions, go through the following steps-

  • Open Office 
  • Now, in the toolbar, go to File> Options> Language.
  • Click on your options and then “Set as Default.”
  • If you can’t find your language, click on “Add additional editing languages.”
  • After that, select one from the list and press “Add.”

You have to be sure that the keyboard layout appears as “Enabled”. If not- 

  • Select and press the “Not enabled” option.
  • After that, click on “Add languages”> your preferred language> “Add” and then close the dialogue box.

Also, you have to recheck if the proof option is working. If it is installed, it will work for sure. Otherwise, you have to:

  • Click on “Not installed”. Download the tongue Accessory Pack and follow the instructions. This step is pretty similar to the one in the section above.
  • In PowerPoint, go to File → Options → Language.
  • Click on the new tongue and select “Set as Default” or “Match Microsoft Windows” if that is the Office display language.

How to Change the Language of Menus and Buttons in PowerPoint?

To change the display language in PowerPoint , for instance – the language of buttons, menus and controls, follow these steps:

  • Find out the ‘File’ tab 
  • There, select ‘Options’ in the menu to the left
  • Select ‘Language’ you can find the menu to the left in the dialogue box
  • Now, select the default language you want
  • Select ‘Set as Preferred’
  • Press the ‘Ok’ button.  

Powerpoint language change

If your preferred language is not listed, follow the steps below.

How to Add an Authoring Language?

If you want to add an authoring language, you have to: 

    1. Open an Office program; choose MS PowerPoint. 

    2. Now, select File >Options >Language.

    3. On the Office Language Preferences set, you will find under Office authoring languages and proofing, select “Add a Language”. 

    4. After that, choose the desired language in the “Add an authoring language” dialogue. 

    5. And then, select “Add”. By doing this, a browser page will open where you can download your installation file.

    6. Now, select “Download” on the browser page and run the downloaded package to complete the installation process. 

    7. Afterwards, the added language appears in the list of Office authoring languages.

However, proofing available may appear next to the language name. From there, you can obtain a language pack with proofing tools for your language. However, if proofing is not available next to the language name, then you will know that proofing tools are not available for that language. On the other hand, if proofing installed appears next to the language name, you’re all set.

How to Add a New Language in PowerPoint?

If you want to add a language, choose the UI display language , and set the authoring and proofing language, you can conveniently use the Office language options.  

PowerPoint is used by a man on the laptop

If your preferred display language is not available in PowerPoint, you can download and install it from the Microsoft Office support page. Also, this is a case when you change the text language of a PowerPoint presentation, but the spelling and grammar check does not seem to work. Therefore, you will not get an error message if your language is not installed. 

Therefore, go through follow these steps to learn how to change the proofing language in PowerPoint and add a new display language: 

  • Go to the ‘File’ tab
  • Then, click ‘Options’ in the menu to the left
  • After that, select ‘Language’ in the menu to the left in the dialogue box
  • Click on the ‘Install additional display languages from Office.com’ link
  • Finally, follow the instructions on the webpage 

The above instructions will guide you to download and install display, help, and proofing menus for the language you want to use. However, all install menus will be in the selected language. 

Remember that you can set the display and authoring languages independently. For instance, you can use everything in the same language or use a combination of more languages for your OS, authoring, Office UI display, and so on. 

Basically, the languages available on your computer depend entirely on the language version of your Office and any additional language pack, language interface pack, or ScreenTip languages. 

How can you Change the PowerPoint Display Language on Mac?

If you are using Mac, you can change the PowerPoint display language easily. To do the job, follow the instructions below-

How can you Change the PowerPoint Display Language on Mac

    1. To change the user interface, click the Apple icon on your Mac.

    2. Then, select “System Preferences” from the dropdown menu.

    3. Select the “Language & Region” option in the first row.

    4. After that, toggle to the individual “Apps” menu. 

    5. Then, look at the lower right of the window and select the (+) icon.

    6. Later on, click “Microsoft PowerPoint” from the “Application” dropdown menu.

    7. Choose your preferred language below from the “Language” dropdown menu.

    8. Then, just click the “Add” button.                 

    9. If you want to make it default, mark that option.

   10. Restart the app when prompted.  

How to Use the PowerPoint Translator Tool for Text?

If you want to use the PowerPoint translator tool, you have to follow the instructions below-   

    1. Select the “Tools” option in PowerPoint.

    2. You will find “Translate….” from the dropdown menu; select it.  

    3. After that, the “Translator” window on the right side of your PowerPoint screen will open.

    4. There, select a text box that you want to translate. Meanwhile, the text will appear in the white box in the translator window. 

    5. Choose a language from the “To” dropdown menu. By doing this, the translated text will appear in the blue box below.

    6. Tap on the “Insert” option to insert that translated text in a new text box on the slide. Afterwards, you will be able to move the text box and resize it as needed.

    7. Also, you can highlight individual words or sentences with different translations. You will find it appear below the blue box, depending on the context. Then, tap on the three dots to view a sample sentence. 

    8. Finally, select “Insert” when you’re ready to substitute.  

Team attending a PowerPoint presentation by a member

The Bottom Line

As you have seen, changing the tongue in PowerPoint is as easy as it can be! Go to the language settings and follow these simple steps. This program will correct your spelling mistakes and will help you with grammar. 

Having good knowledge of how to change language in PowerPoint is essential when you want to impress people with the accuracy of your presentation. Therefore, you should learn about it in-depth to deliver the best presentations. For this purpose, you may join this PowerPoint Introduction course for more tips and tricks. 

Recent Posts

  • How to Become a Web Designer From Scratch?
  • Xero Chart of Accounts: What you Need to Know
  • Is a Bookkeeping Certificate Worth It?
  • What Is Double-Entry Bookkeeping? Guide for Small Businesses
  • What is Forensic Psychology and Criminology All About? (Scope and Requirements)
  • How to Delete an Unwanted Page in Microsoft Word 2016
  • How to Relieve Stress and Depression Quickly: A Guide to Success
  • How Much Does a Bookkeeper Earn in the UK
  • What is the Payroll Management System in HR Evolution?

0 responses on "How to Change Language in PowerPoint for All Slides: A Detailed Guide"

Leave a message cancel reply.

You must be logged in to post a comment.

--> -->