PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, August 31, 2022

[FIXED] How to change spell checker language

 August 31, 2022     poedit     No comments   

Issue

I'm using Poedit/1.8.11 on Windows 10 to manage translations for a CakePHP project, namely English and Spanish.

For each catalog, I've chosen the translation language from the drop down list so I presume they are correct:

Catalogue properties

In source *.po they look like this:

  • "Language: en_GB\n"
  • "Language: es_AR\n"

Nonetheless, spell checker is checking both translations as Spanish. The program does not seem to recognise the language and I can't find any menu item to pick it manually:

Spell errors

Online help does not even mention spelling. How do you set the spell checking language in Poedit?


Solution

As Václav Slavík explains, Poedit does not implement its own spell checking solution. Instead, it relies on Windows builtin spell checker.

In any case, Windows spell engine appears to ignore both current input language at OS level:

Current language

... and current translation language set in gettext catalogue:

Translation language

Instead, it appears to merge the dictionaries of all available languages and run a simultaneous check on all of them:

Simultaneous spelling

I understand it's a feature aimed at mobile users since it's similar to what Android virtual keyboard does but in this particular case it renders the entire tool useless.

Given that configuring languages is particularly difficult and counter-intuitive, I recommend to just ignore the feature.



Answered By - Álvaro González
Answer Checked By - Pedro (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing