Welcome / Bienvenue / Benvinguts / Bienvenidos
For information about my translation services, please visit the main site.
Pour des informations sur mes services, merci de regarder le site principal.
Para información sobre mis servicios de traducción, visite el web principal.

Welcome / Bienvenue / Benvinguts / Bienvenidos
For information about my translation services, please visit the main site.
Pour des informations sur mes services, merci de regarder le site principal.
Para información sobre mis servicios de traducción, visite el web principal.

Macro to prepare documents for monolingual review in memoQ (and possibly other CAT tools)

MemoQ’s monolingual review feature works best with clean Word documents containing no tracked changes or comments. If you import a document in which changes are still visible or in which there are comments, memoQ will add lots of code to the target text, which you don’t want.

This macro cleans the document up and saves it under a new filename (so that you don’t overwrite the commented version), making it ready to be imported as a monolingual review.

The macro includes comments to explain what some of the lines are doing and how you can adjust the macro to meet your needs.

Since many translators use only straight apostrophes and quotation marks in memoQ, then convert them to the curly variety in the final document sent to the client, the macro includes an optional line (deactivated by default) that will revert all apostrophes and quotation marks to the straight variety. Please read the instructions carefully if you wish to use that line.

Thanks to Kevin Mote, who provided the code for the part of the macro that renames the file. My code is a slightly modified version of his. In particular, unlike Kevin’s version, mine does not overwrite the old version, since most translators would want to keep a copy of the commented version they sent to their client.


Sub PrepareForMemoQMonolingualReview()
' memoQ's monolingual review feature works best when you import a document with no tracked changes and no comments.
' This macro removes them, then resaves the file with "clean-for-import" appended to the file name.
' The part that appends the filename is adapted from the macro provided by Kevin Mote (https://www.linkedin.com/in/kevinmote/) at https://superuser.com/a/781501. Thank you Kevin. This was very helpful!
' Please note that, unlike Kevin's macro, this version does not delete the original file.
Dim strFileFullName, strFileName, strNewName, strFileExtension As String
'
ActiveDocument.AcceptAllRevisions ' Accepts all tracked changes
ActiveDocument.TrackRevisions = False ' Switches off track changes
ActiveDocument.DeleteAllComments ' Deletes all comments in the active document.

ReplaceQuotes ' Reverts quotation marks and apostrophes back to the straight variety, assuming that this is the variety that was used while working in the CAT tool.
' Remove the apostrophe from the above line if you want the monolingual review document to revert to straight apostrophes and quotation marks.
' Note that to run the above line you also need to have installed the "ReplaceQuotes" and "QuotesReplacementBothWays" macros, which I provided along with several others in a blog post at http://www.anglopremier.com/blog/?p=1119.
' *****ADDITIONAL OPTION DESCRIBED ABOVE*****

' Get current name:
strFileFullName = ActiveDocument.FullName 'for Word docs
'strFileFullName = ActiveWorkbook.FullName 'Use this line instead for for Excel docs
'strFileFullName = Application.ActivePresentation.FullName 'Use this line instead for Powerpoint presentations
If (InStr(strFileFullName, ".") = 0) Then ' Checks whether the full file name contains a file extension by looking for a dot.
res = MsgBox("File has not been saved. Can't rename it.", , "Rename File")
Exit Sub
End If
' strFileName = Right(strFileFullName, Len(strFileFullName) - InStrRev(strFileFullName, "\")) 'strip path - not used. Next line used instead.
strFileName = strFileFullName
strFileExtension = Right(strFileName, Len(strFileName) - InStrRev(strFileName, ".")) ' Identifies the file extension
strFileName = Left(strFileName, (InStr(strFileName, ".") - 1)) ' Strips the extension from the strFileName variable
' If InStr(3, strFileName, "_Delivery", 1) <> 0 Then strFileName = Left(strFileName, (InStr(strFileName, "_Delivery", 1) - 1))
' The above line is not used. Originally intended to strip the word "_Delivery" and the delivery number from the file name (assumes "Delivery" is at least the third character; not case-sensitive). But I dedcided I wanted to keep the delivery number.
' If you wish to remove something from the file name you can reinstate the above line (remove the apostrophe) and replace "_Delivery" with whatever you want to remove.

' Prompt for new name. Replace "_clean-for-import" on the next line if you prefer something else to be appended by default.
strNewName = InputBox("Rename this file to:", "Rename File", strFileName & "_clean-for-import." & strFileExtension) 'Saves with the new name. Extension is not changed.
If (strNewName = "") Or (strNewName = strFileName) Then ' (Check whether user cancelled)
Exit Sub
End If

' Save file with new name:
ActiveDocument.SaveAs2 FileName:=strNewName 'for Word docs
'ActiveWorkbook.SaveAs2 FileName:=strNewName 'for Excel docs
'Application.ActivePresentation.SaveAs FileName:=strNewName 'for Powerpoint presentations

End Sub

Share:

Macros to replace apostrophes and quotation marks before and after using a CAT tool

To ensure that concordance searches in translation memories work properly and to increase fuzzy matches, many translators systematically replace curly apostrophes and quotation marks with straight ones before importing a document into their CAT tool, then revert them back to the curly variety before delivering the final document to the client.

Until recently, I used a very simple find/replace macro to achieve this, but then I realized that the macro didn’t replace apostrophes and quotation marks situated. I searched online and found a solution that works not only in the main document but also in footnotes and text boxes. Thanks to Doug Robbins and Greg Maxey, whose work I drew on to create one of the macros below.

Copy the following code into a single module in your normal.dotm template, then run the ReplaceQuotes macro before importing your document into your CAT tool and the ReinstateQuotes macro after you have exported from your CAT tool to Word.

I’ve included extensive comments so that you can understand what each line is doing and adapt it as necessary.

Sub ReplaceQuotes() ‘ Replace curly quotation marks and apostrophes with straight ones.
Options.AutoFormatAsYouTypeReplaceQuotes = False ‘ Sets autoformat option not to replace curly quotes with straight ones. This is reset in the final like of the QuotesReplacementBothWays macro.
QuotesReplacementBothWays
End Sub

Sub ReinstateQuotes() ‘ Replace straight quotation marks and apostrophes with curly ones.
Options.AutoFormatAsYouTypeReplaceQuotes = True ‘ Sets autoformat option to replace curly quotes with straight ones, in case the user has manually set the option to false before running the macro.
QuotesReplacementBothWays
End Sub

Sub QuotesReplacementBothWays()
pFindTxtFromOtherMacro = “‘”
pReplaceTxtFromOtherMacro = “‘”
FindReplaceAnywhere
pFindTxtFromOtherMacro = “””” ‘ Find all quotation marks (smart or curly). Four quotation marks are needed because the ” symbol has a special meaning that must be cancelled.
pReplaceTxtFromOtherMacro = “””” ‘ Replaces with smart or curly, depending on whether ReplaceQuotes or ReinstateQuotes was run.
FindReplaceAnywhere

‘ Remove the apostrophes from the start of each line in this section to replace French guillemets with English-style straight quotation marks.
‘ pFindTxtFromOtherMacro = “« ” ‘ Find all opening guillemets followed by a space (incl. non-breaking spaces).
‘ FindReplaceAnywhere
‘ pFindTxtFromOtherMacro = “«” ‘ Find remaining opening guillemets with no space after.
‘ FindReplaceAnywhere
‘ pFindTxtFromOtherMacro = ” »” ‘ Find all closing guillemets preceded by a space (incl. non-breaking spaces).
‘ FindReplaceAnywhere
‘ pFindTxtFromOtherMacro = “»” ‘ Find remaining closing guillemets with no space before.
‘ FindReplaceAnywhere

pFindTxtFromOtherMacro = “” ‘ Makes the variable empty again
pReplaceTxtFromOtherMacro = “” ‘ Makes the variable empty again
Options.AutoFormatAsYouTypeReplaceQuotes = True ‘ Reverts to Word’s default setting. Change this to “False” if you prefer Word not to replace straight quotes with curly ones as you type.
End Sub

Public Sub FindReplaceAnywhere()
‘Performs a find/replace on all parts of a text, including footnotes, text boxes, etc.
‘Found on various webpages, but seems to have been originally created by Doug Robbins and Greg Maxey (https://wordmvp.com/FAQs/Customization/ReplaceAnywhere.htm).
‘Adapted so that it can be run with the find and replace strings pre-defined by other macros.

Dim rngStory As Word.Range
Dim pFindTxt As String
Dim pReplaceTxt As String
Dim lngJunk As Long
Dim oShp As Shape

If pFindTxtFromOtherMacro = “” Then
‘ This macro can be used on its own, in which case the user is asked what Word should find.
pFindTxt = InputBox(“Enter the text that you want to find.” _
, “FIND”)

If pFindTxt = “” Then
MsgBox “Cancelled by User”
Exit Sub
End If

Else
pFindTxt = pFindTxtFromOtherMacro
End If

TryAgain:
If pReplaceTxtFromOtherMacro = “” Then
‘ This macro can be used on its own, in which case the user is asked what Word should replace the found string with.
pReplaceTxt = InputBox(“Enter the replacement.”, “REPLACE”)

If pReplaceTxt = “” Then
If MsgBox(“Do you just want to delete the found text?”, _
vbYesNoCancel) = vbNo Then
GoTo TryAgain
ElseIf vbCancel Then
MsgBox “Cancelled by User.”
Exit Sub
End If
End If

Else
pReplaceTxt = pReplaceTxtFromOtherMacro
End If

lngJunk = ActiveDocument.Sections(1).Headers(1).Range.StoryType ‘Fix the skipped blank Header/Footer problem

For Each rngStory In ActiveDocument.StoryRanges ‘Iterate through all story types in the current document

Do
SearchAndReplaceInStory rngStory, pFindTxt, pReplaceTxt
On Error Resume Next

Select Case rngStory.StoryType

Case 6, 7, 8, 9, 10, 11
If rngStory.ShapeRange.Count > 0 Then
For Each oShp In rngStory.ShapeRange
If oShp.TextFrame.HasText Then
SearchAndReplaceInStory oShp.TextFrame.TextRange, _
pFindTxt, pReplaceTxt
End If
Next
End If
Case Else

End Select

On Error GoTo 0

Set rngStory = rngStory.NextStoryRange ‘Get next linked story (if any)

Loop Until rngStory Is Nothing ‘ Loops back to the “Do”

Next ‘ Loops back to “For Each rngStory”

End Sub

Public Sub SearchAndReplaceInStory(ByVal rngStory As Word.Range, _
ByVal strSearch As String, ByVal strReplace As String)

With rngStory.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = strSearch
.Replacement.Text = strReplace
.Wrap = wdFindContinue
.Execute Replace:=wdReplaceAll
End With

End Sub

Share:

AutoHotkey script to move the focus away from the Concordance window

Sometimes you want to keep the MemoQ Concordance window open on your second screen while you work on your document. But there’s no built-in method to achieve this with the keyboard. You can only do so by clicking with the mouse.

This short script moves the focus away from the Concordance window and to the main MemoQ window, allowing you to work on the document while keeping the Concordance window open. Just press ctrl+k to activate the script.


#IfWinActive, Concordance
^k:: ; MemoQ: Move focus away from Concordance window
WinActivate memoQ
#IfWinActive
return

The following script closes the Concordance window. Continue reading

Share:

Spot the foreign-language influence

Amazon.com: For If The Flies - t-shirt: Clothing

¡Por si las moscas!

Anyone translator living in his or her source-language country needs to watch out for source-language interference. Similarly, an author who writes in one language but lives in a country that speaks a different language needs to be wary of interference from the host country’s language.

Today, Google recommended an article to me in which I noticed foreign-language interference almost from the beginning. See if you can spot it too in this article about the level of English in Spain, then click on “Continue reading” to reveal the answers.

Continue reading

Share:

Day 3 of WFS Live: How football clubs secure partnerships outside their local geographies

This week I’ve been attending World Football Summit‘s second WFS Live event. Day 3 included a panel discussion on “How football clubs secure partnerships outside their local geographies”.

As a translator, this session was of particular interest to me, since translators play such a vital role in helping football clubs and leagues to reach new markets.

Matthieu Fenaert of Real Valladolid explained that, in the current economic climate, it was important to consolidate existing partnerships, rather than building new ones. Asked how international sponsors could be retained in these difficult times, he said that clubs needed partners, not sponsors, a view echoed by the other panellists.

On the topic of foreign investors, he said that they had to respect the history of their new club, noting the uproar among Cardiff City fans when Vincent Tan changed the club’s colours from blue to red – a decision eventually reversed due to fan pressure.

Marc Armstrong of Paris Saint-German said that clubs had had to adapt their sales methods due to travel restrictions. He said that, while on the one hand there was no replacement for face-to-face travel, perhaps it would not be necessary to travel so much in future.

He also spoke about the club’s shift from national sponsors to global partners. When I lived in Paris and attended games at the Parc des Princes, nearly all PSG’s sponsors were French brands, many of which operated solely in France. Fast forward 20 years, and the club’s partners are much more global, a deliberate strategy by the club.

Marc added that the club had created a lifestyle brand to stand out from other clubs. Other strategies had included establishing innovative partnerships, such as with Finnish mobile game development company Supercell, and putting key players in contact with the leading influencers in key markets. Creativity, flexibility and intelligence, said Marc, were necessary to find opportunities.

Casper Stylsvig talked about some of the innovations that AC Milan had introduced, reaching out to fans through music and entertainment. He noted that many big brands sponsored both music and sport. Since people today consume sports differently, clubs needed to change their narrative. By way of example, Casper Stylsvig referred to the virtual concert the club had organized the previous Friday, in collaboration with Roc Nation. Such events should be connected to the club’s image: last week’s concert featured many upcoming stars from the world of music, in keeping with a club that had one of the youngest teams in Europe.

I was particularly interested in hearing the thoughts of Andrew Hampel, since, like me, he provides clubs with skills and expertise that they do not have in house. For instance, moving to a new stadium is a once-in-a-lifetime event for most football clubs, but Legends International has already worked with several football clubs that have built a new ground. Like the other speakers, Andrew Hampel stressed the importance of partnership, rather than sponsorship, and said that, to engage in a sophisticated way, clubs needed to understand their partners’ businesses – which is where companies like Legends International come in to provide the necessary expertise.

Despite the current economic climate, football clubs – especially the heavyweight clubs – are looking to go ever more global. Although there is currently a major focus on new markets in the Asia Pacific region, which will require language consultants who work with major Asian languages like Chinese, Japanese, Korean and Thai, the English language is still going to be a vital part of club’s communication strategies, perhaps even more so than the local language in some cases.

Share:

Useful links related to PerfectIt

PerfectIt checks: A brief explanation of each check performed by PerfectIt, with links to a full explanation.

PerfectIt style sheets: Information on working with style sheets and customising them.

PerfectIt settings tab: What the options in the Settings tab do and how to configure them.

Introduction to MS Word wildcards: An exercise providing a basic introduction to using wildcards in Microsoft Word. Includes links to other, more comprehensive resources on Word wildcards.

Users’ Facebook group: A Facebook group for PerfectIt users. Users ask how to configure certain settings. Particularly useful if you can’t get a wildcard search working.

Associations offering discounts: a list of associations whose members are entitled to a discount on PerfectIt.

Interested in a workshop?

I organise PerfectIt workshops for translators’ and editors’ associations in which I provide an overview of the program, then delve into its advanced features. I usually end with an interactive section in which participants can ask me how to enforce certain style rules using PerfectIt. For more information, write to the e-mail address found on my main website.

If you have already attended one of my workshops and have not received How-to…with-PerfectIt4.pdf, send me an e-mail and I’ll send you a copy.

IntelligentEditing’s playlist on building stylesheets

Share:

On the usefulness of machine translation (hear me out!)

Colleagues who know me know that I’m not a proponent of offering machine translation post-editing as a service. There is just so much to fix in a machine-translated text that it’s not a productive way of working, especially if you’re a perfectionist like me, who would find it to difficult to leave a sentence alone if the translation can be understood but could be improved.

Nevertheless, I don’t belong to the camp who believe that machine translation (MT) is never useful. In fact, I challenge anyone to tell me that MT would not save them time if they were translating the following sentence.

Continue reading

Share:

I’m going to Cannes!

As I was doing the washing up last night, I decided to tune in to France Info. And it was perfect timing: a few minutes later the presenter interviewed Aurel about his film, Josep, which had been selected for the Cannes Film Festival 2020.

The animated film, produced by Les Films d’Ici Méditerranée, tells the story of Josep Bartoli, a Catalan artist who was among the many Republicans who fled north into France to escape the Spanish Civil War. The French government placed the refugees in concentration camps, in awful conditions, in the middle of winter. You can read a full review in English here.

So why was I so excited when this interview came on the radio?

Continue reading

Share:

WFS Live Review

Used with permission by World Football Summit

This year I had been looking forward to attending one of the World Football Summit events, either in Madrid or in Durban. Sadly, like so many other events this year, COVID-19 stopped play before it even began, but the World Football Summit did a wonderful job at organizing an online event in their stead. Here are some of my thoughts about WFS Live, which took place online from 6-10 July.

One of the advantages of the event being online was that it attracted a more international audience, rather than the usual crowd from Europe and North America. There were many attendees from all over Africa and Asia. The speaker line-up was also impressive, no doubt helped by the fact that it was far easier for top speakers to fit an online event into their agendas than it would have been for them to fly perhaps half way around the world to attend an event in person.

Continue reading

Share:

For your critical documents, don’t trust a translator!

Hear me out… You’ve spent days or weeks working with a team to fine-tune your document before it is published. Now, it’s time to get it translated, so all you need is a good translator, right?

Wrong. If you needed a team to put together the original version, what makes you think a translator working alone will produce what you need? For your most critical documents, don’t trust a translator, trust a translation team. If you hire a translator who will work with another colleague, you’re more likely to receive a translation that has the same impact as the text you produced.

My workflow varies from project to project. For instance, for a recent document that had lots of short, catchy titles, I had a brainstorming session on the phone with my colleague, but I wouldn’t do that for every project. Here’s a typical workflow I might use when working with a colleague on an important document:

Step 1 – My first version: The fact my work will be read by an accomplished colleague shouldn’t make any difference. But I’ll be honest with you: it does. My reputation is important to me, and I know my colleague will pick up on anything that doesn’t quite sound right, or worse, any blatant mistranslations. So I read my work a little more carefully before passing it on. For some parts of the text, I even offer two solutions and leave a note asking my colleague which one he or she prefers.

Step 2 – My colleague’s edits: My colleague reads my work through carefully, edits it to improve the text, and adds additional comments with other ideas.

Step 3 – I go through all my colleague’s changes. Some of them I accept; some I reject; some I replace with a better idea.

Step 4 – My colleague looks at my feedback, and makes additional suggestions.

Step 5 – Depending on how much discussion is still taking place, I’ll either finalise the text or get on the phone and discuss the last few points.

Step 6 – I read through the entire text one last time in English to check the overall flow of the text before sending it to the client.

If it took an entire team to draft your document, or you had five different versions before you produced the definitive one, don’t have it translated by a translator working alone. Find a team.

Share: