SimpleMobileTools / Simple-Calendar

A simple calendar with events, tasks, customizable colors, widgets and no ads.
https://www.simplemobiletools.com
GNU General Public License v3.0
3.5k stars 1.14k forks source link

Fix escape sequence in string resource #2257

Closed KBenMessaoud closed 8 months ago

KBenMessaoud commented 8 months ago

I've encountered a build failure caused by an incorrect escape sequence in a string resource within strings.xml. The problematic line is:

Les jours fériés ont été correctement importés dans le type d\'évènement \'Jours fériés\'

The single quote after d in d\'évènement is escaped improperly.

Solution This Pull Request corrects the escape sequence by adding an extra backslash, ensuring that the single quote is correctly escaped. This change resolves the build failure. The corrected line is:

Les jours fériés ont été correctement importés dans le type d\'évènement \'Jours fériés\'

Impact This change will allow the application to build correctly and should not impact any functionality or other parts of the application.

Please review this Pull Request and if it meets your approval, I'd appreciate it if you could merge it into the main codebase.

Thank you for considering this fix.

Aga-C commented 8 months ago

It's a duplicate of https://github.com/SimpleMobileTools/Simple-Calendar/pull/2254.