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
0
votes
0 answers

Indicating Gender in pos-Tags, Python

Am trying to Pos-Tag a french sentences with TreeTagger Wrapper, But it does not indicate the gender of the nouns This is an example: import treetaggerwrapper import pprint tagger = treetaggerwrapper.TreeTagger(TAGLANG='fr') var1 = 'un…
Ran
  • 635
  • 2
  • 10
  • 22
0
votes
3 answers

Parsing error for French locale with SimpleDateFormat(string,locale)

I have a piece of code like this on my java side: private static DateFormat getHourFormatter(){ //DateFormatSymbols dateFormatSymbols = new DateFormatSymbols(_locale); Locale locale = Locale.FRENCH; //locale : "fr" …
SubhenduGN
  • 21
  • 2
  • 14
0
votes
2 answers

Javascript regular expression to match French characters

I need to match a word with a French character (dérange) with a regular expression. So far I have this: var text = "An inconvenient (qui dérange) truth"; var splitText = text.trim().match(/\w+|\s+|[^\s\w]+/g); …
0
votes
1 answer

French " ' " in variable blocks its presentation

Vague language issue in french. I am building a website with 5 languages. I have setup language files with among others French which i include using PHP $lang['Description'] = 'Photos'; $lang['cookie']= "En utilisant notre site Web, vous acceptez…
Johan4849
  • 3
  • 2
0
votes
1 answer

Stanford CoreNLP: entity named recognition and relation extraction for French

I would like to know if there are Stanford CoreNLP models for named entity recognition and relation extraction for French text. If yes, where can I download them? Thanks.
0
votes
1 answer

French special characters are not correctly rendering in BIRT report

I want to create a report in french language. I'm using birt-runtime-3_7_2. Report headings, table headers are configured in messages.properties file. The problem is when loading the report french special characters are not shown properly. eg. Année…
0
votes
1 answer

JPA unescape french characters from CLOB to String column

I have following problem with multilanguage database. I needed to store properties file per language to database. I used CLOB datatype for it and String field in an entity, which I was converting java.util.Properties to String on @PrePersist and…
Jan Hruby
  • 1,477
  • 1
  • 13
  • 26
0
votes
1 answer

Case insensitive regex matching both à and À

I faced that case independent regex like /(?i)À/ doesn't match the line in lowercase like à. I checked this in code and made sure that "À".toLowerCase() == "à" Does case insensitive regex works only for english (or latin) characters? Here's the…
ikryvorotenko
  • 1,393
  • 2
  • 16
  • 27
0
votes
0 answers

p:calendar support for locale

I am getting some issue when I am trying to add support for locale in JSF primefaces calendar. I'm passing locale & have also added the locale js file for calendar UI support. But when user select the date from calendar & after that I have below…
Sharry India
  • 341
  • 1
  • 9
0
votes
1 answer

How do I get French accents to show up properly in a mailto?

I've got a mailto link with body copy. The content is all in French. Unfortunately its showing funny characters instead of the accents that I need.
michelle
  • 303
  • 6
  • 16
0
votes
1 answer

Part-of-speech without Python

I am trying to do tagging of a french text, but TreeTagger needs Python which is impossible to install on my PC at work. For security reasons, it is impossible to install other programs (only R). Is it possible to use R code for tagging which does…
Poisson
  • 1,543
  • 6
  • 23
  • 34
0
votes
1 answer

Excel to XML encoding problems with French words

I already found partial solution here for my problem with encoding with some French words... However! Few characters are doing problems and I cant figure out why. I have tried to do separate VBA script for directly copying this problematic word with…
0
votes
2 answers

PHP Date Time Conversion French

I have an array of dates as listed below: $date_events = array( 0 => 'Lundi, janvier 30, 2017', 1 => 'Mardi, janvier 24, 2017', 2 => 'Mardi, janvier 17, 2017', 3 => 'Mardi, janvier 10, 2017', 4 => 'Mercredi, janvier 25, 2017', …
0
votes
0 answers

Oracle SQL French script file

I need to do a mass insert into my database. I have French characters(e.g é) into my table When i connect to SQLPlus and run the query manually INSERT INTO TEST VALUES ('é'); Data is inserted properly. When i save the same query in an Sql file and…
0
votes
1 answer

'net share' doesn't work on french Windows OS

I am writing an NSIS script on windows OS to create shared directories at the time of installation. Here is my code which works well on English Windows but doesn't work on French Windows 7. CreateDirectory C:\tmpShare nsExec::Exec 'icacls…
Nitin
  • 145
  • 9
1 2 3
9
10