Questions tagged [french]

Computing issues involving the French language

Questions related to computing issues, including not but limited to character encodings, fonts, and formatting, involving the French language, spoken in France, Belgium, Switzerland, Canada, and many former colonial regions in the Americas and Africa.

148 questions
1
vote
1 answer

How to display French in the language Section of App Store for my app?

I have successfully released my app on the App Store but the language displayed in the App information is English despite the fact that I have selected French as the primary language for my app when I submitted it. Any idea how to display French in…
bablack
  • 129
  • 9
1
vote
1 answer

How to find all synoyms for a french word using NLTK

I would like to find all synonyms of a french word. I have implemented used this code: import nltk from nltk.corpus import wordnet syns=[synset.lemma_names('fra') for synset in wordnet.synsets('maison', lang='fra')] print(syns) The program outputs…
1
vote
1 answer

What pattern to use in a html input field to validate french numbers format?

I am looking for the right pattern allowing to validate french numbers (positive integers) in an HTML input. i.e. thousand separator is a "space". Ex. of correct values: 1 12 345 1 234 567 Ex. of incorrect: 12x 2x1 1237 I have tried the pattern…
Iznogood1
  • 152
  • 2
  • 11
1
vote
0 answers

How to make plots in ggplot R for french character on MAC OS Mojave

I would really be grateful if you can help me out. I'm not able to show french character, such as "é,è, œ", in plot made with ggplot, while using markdown document for word or html. The outcome plot shows "" or kind of, if I knit the document. If I…
D.Sant
  • 11
  • 3
1
vote
2 answers

Generating translation CSV file

I'm using ajax/javascript to generate a English to French translations csv file. The issue is that my CSV file contains strange characters. I think that I have to change some options in Excel? My generated CSV file: 'February' should be…
1
vote
2 answers

Train a non-english Stanford NER models

I'm seeing several posts about training the Stanford NER for other languages. eg: https://blog.sicara.com/train-ner-model-with-nltk-stanford-tagger-english-french-german-6d90573a9486 However, the Stanford CRF-Classifier uses some language dependent…
1
vote
1 answer

Snowball Stemmer : poor french stemming

I'm dealing with some nlp tasks. My inputs are french text and so, only Snowball Stemmer is usable in my context. But, unfortunately, it keeps giving me poor stems as it wouldn't remove even plural "s" or silent e. Below is some example: from…
Neroksi
  • 1,301
  • 1
  • 12
  • 20
1
vote
2 answers

Query database for a word containing French accent

i have a table in my database similar to this one id | name | email ----------------------------------------- 1 | elie | elie@company.com 2 | jénifer | jenifer@company.com 3 | jenny | jenny@company.com as you can see the…
Joey Azar
  • 132
  • 1
  • 13
1
vote
2 answers

French Regional settings and Comma for decimal seperator

I am creating a web application which needs to be hosted in France. With French regional settings, server collation and local timezone. The main issue I am facing is the number format. In European/French styles the number format uses comma(,),…
George Thomas
  • 125
  • 2
  • 12
1
vote
1 answer

Format numbers in all android app

I am using an app that have 2 languages, french and arabic and in order to do that i use this code: Locale locale = new Locale("ar" or "fr"); Locale.setDefault(locale); config.locale = locale; …
Kingofkech
  • 129
  • 9
1
vote
0 answers

Docx don't read properly accented word in python

I've got a problem when trying to tokenize text using Moses tokenizer. The tokenizer is considering the accented word as 'é' or 'è' as spaces and special characters when tokenizing. Steps : -- > I read from .docx file -- > Tokenize text with…
1
vote
2 answers

using french accent with pyttsx

I am trying to use pyttsx for text-to-speech. I would like it to tell the french 'é' : # -*- coding: utf8 -*- import pyttsx engine = pyttsx.init() voice = engine.getProperty('voices')[26] # the french voice engine.setProperty('voice',…
1
vote
0 answers

Using Stanford tools to parse French with Universal Dependencies

I want to parse French text with Universal Dependencies using Stanford Parser version 3.7.0 (the last one). Here is my command : "java -mx2100m -cp stanford-parser.jar:stanford-french-corenlp-2016-10-31-models.jar…
Starckman
  • 145
  • 6
1
vote
1 answer

Problems displaying french accented characters in .jar file, despite it working perfectly in Netbeans

My program displays french accented characters such as î and é, But when I built it into a jar file, I am using the same .txt file which the file.io/ file handler is reading the data from. Any ideas on how to fix it so the characters display…
1
vote
1 answer

Using Python Library for Translating French to English

i saw many posts on this one but not really sure which is the best library that does translate from French to English. I have some 10,000 records extracted from a French website and want to translate them in to English. Can anyone help please?