Customizing wrong SharePoint translation

Hi,
We are using SharePoint 2013 with a Dutch language pack installed. When multiple users "Like" a post in a social newsfeed, SharePoint translates "Henk and 2 others like this" to the dutch translation of "Henk
and 2 others look like this", it's a very awkward translation and makes no sense at all.
Microsoft seems to fixed this issue in Office 365. I recently installed SP1 for SharePoint and the language pack, but this doesn't solve the issue.
Where can I customize these translations?
Hope you can help me out
Mark,

Hi Mark,
i recommend to do this in your testing environment first to know the impact in your environment,
please keep the original file, to make sure if in the future you still need it.
the resource file should be re-deployed, there are some steps, but you can try to reset yout IIS or re-run the product configuration to see, if should it deployed after that, if not then you may need to have some checking in these articles:
http://msdn.microsoft.com/en-us/library/ee231537.aspx
http://blogs.msdn.com/b/sharepointdev/archive/2011/07/01/localizing-the-sharepoint-user-interface-by-using-resource-files-sanjay-arora.aspx
http://msdn.microsoft.com/en-us/library/hh567841(v=cs.95).aspx
http://blogs.msdn.com/b/yojoshi/archive/2012/04/29/easy-way-to-deploy-resx-resource-files-under-app-globalresources-folder-in-sharepoint-2010.aspx
Regards,
Aries
Microsoft Online Community Support
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • How to custom edit SharePoint 2010 site without SPD2010 / Visual Studio enabled

    Hi All,
    my company completely disabled custom editing SharePoint 2010 sites. Editing now only available through the web.
    A little tweak like filtering datasheet list view based on user group membership is impossible now.
    Original solution was to replace code part in SPD like:
    <Where>
    <Or>
    <Membership Type="CurrentUserGroups">
    <FieldRef Name="REPLACEME"/>
    </Membership>
    <Eq>
    <FieldRef Name="REPLACEME"/>
    <Value Type="Integer">
    <UserID Type="Integer"/>
    </Value>
    </Eq>
    </Or>
    </Where>
    Source: http://www.hornerit.com/2009/07/filtering-by-group-in-sharepoint-person.html
    Can I still make some workaround to solve this problem, or I should go back to good old days using spreadsheets / folders / mailbox instead of SharePoint websites?
    Thanks!

    Hello,
    I have found this link to filter data based on group member using jquery. This could be helpful in your case:
    http://spjsblog.com/2010/02/16/filter-list-view-based-on-membership-in-sharepoint-group/
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Wrong german translation in IOS 7.0

    I found some wrong german translations in IOS 7.0
    make a new contact add a new Number there comes a line calles "Radio" ?????
    normaly it should be something llike "Mobil" or something else
    What the **** is a Radio Number ??

    Tell Apple: http://www.apple.com/feedback

  • Wrong language translation

    Dear support,
    the welcome word whitin the Mast Head is wrong translated in Italian.
    For example "Welcome, Mario Rossi" is translated in
    "Benvenuti Mario Rossi" instead of "Benvenuto Mario Rossi", because Mario is a masculine name.
    How can we customize the system in using a different "Welcome" word?
    Thanks in advance,
    regards,
    Nicola
    P.S.: I'm using EP6.0 SP2 P4.

    Nicola -
    You can manually change the Welcome word in the com.sap.portal.navigation.masthead.par file.  Within the PAR file resides the file headeriView_nls_it.properties.
    Next, I would re-par the files and save to the customer namespace instead of the SAP namespace.  This will prevent your changes from being overwritten.  Afterwards, upload the par file, and create a new header iView based upon the custom par file.  Finally, edit the default framework page and add the newly created header iView to it.
    I took a look at the properties file, and I'm not sure that it has the ability to distinguish between masculine and feminine names.
    As to getting SAP to change this, I'd suggest opening up an OSS message.
    Hope this helps!
    Regards,
    Kyle

  • Custom InfoPath SharePoint Page Keep getting an error on form load?

    Hi I am trying to host the XMLForm control on a custom page in sharepoint so that I can run some JS against it.
    I have set up a page like so
    <body>
    <form id="form1" runat="server">
    <div>
    <asp:Label ID="status" runat="server" />
    <InfoPath:XmlFormView PrintWindow="true" OnInit="Init_InfoPath" OnInitialize="Load_InfoPath" EditingStatus="Init" id="FormControl" Style="width:100%;" runat="server" __WebPartId="{2A7ABDDD-7682-4556-AE3E-FFF07257B593}"/>
    </div>
    </form>
    </body>
    A Init method like so
    protected void Init_InfoPath(object sender, EventArgs e)
    _xmlLocation = Request.QueryString["XmlLocation"];
    _saveLocation = Request.QueryString["Source"];
    FormControl.XmlLocation = _xmlLocation;
    FormControl.EditingStatus = XmlFormView.EditingState.Editing;
    FormControl.DataBind();
    But I keep getting an error like so
    The given key was not present in the dictionary.
    System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
    at System.ThrowHelper.ThrowKeyNotFoundException()
    at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
    at Microsoft.Office.InfoPath.Server.Util.ReadOnlyDictionary`2.System.Collections.Generic.IDictionary<K,V>.get_Item(K key)
    at New_Programme.FormCode.FormEvents_Loading(Object sender, LoadingEventArgs e)
    at Microsoft.Office.InfoPath.Server.SolutionLifetime.FormEventsHost.<>c__DisplayClass6.<>c__DisplayClassa.<add_Loading>b__3()
    at Microsoft.Office.InfoPath.Server.Util.DocumentReliability.InvokeBusinessLogic(Thunk thunk)
    at Microsoft.Office.InfoPath.Server.SolutionLifetime.FormEventsHost.<>c__DisplayClass6.<add_Loading>b__2(Object sender, LoadingEventArgs e)
    at Microsoft.Office.InfoPath.Server.SolutionLifetime.FormEventsHost.<>c__DisplayClass34.<FireLoadingEvent>b__30()
    at Microsoft.Office.InfoPath.Server.DocumentLifetime.OMExceptionManager.CallFormCodeWithExceptionHandling(UserMessages userMessages, OMCall d)
    An entry has been added to the Windows event log of the server.
    Log ID:5337
    I have narrowed it down to the InfoPath form I am trying to host on this page specifically the loading method.
    public void FormEvents_Loading(object sender, LoadingEventArgs e)
    try
    this.Path = e.InputParameters["XmlLocation"];
    catch (Exception)
    string str2 = e.InputParameters["SaveLocation"].ToString();
    this.Path = str2.Substring(0, str2.LastIndexOf("/"));
    Trace.WriteLine("save location is " + this.Path);
    // NotifyHost("Message from InfoPath");
    The e.inputParameter("XMLLocation") value is always null even though I am passing in the URL when i step through it at my page level but it never seems to get into the form.
    If I press continue on the browser once the error shows the form data loads?
    Can anyone explain what I have missed out here?
    Later: I have figured out that e.InputParameters has no values, Do I need to do something to push values into this other than what I am doing above?

    I figured out my issue from this url:
    http://msdn.microsoft.com/en-us/library/microsoft.office.infopath.server.controls.initializeeventargs.inputparameters.aspx
    Basically the aspx page control needed the OnInitialize.
    <InfoPath:XmlFormView PrintWindow="true" OnInit="Init_InfoPath"
    OnInitialize="Load_InfoPath" EditingStatus="Init" id="FormControl"
    Style="width:100%;" runat="server" __WebPartId="{2A7ABDDD-7682-4556-AE3E-FFF07257B593}"/>
    Then I needed the method to push the parameters into the infopath form, which wasn't clear in any of the sites which I was using to try get this working.
    protected void Initialize_InfoPath(object sender, InitializeEventArgs e)
    e.InputParameters["XmlLocation"] = _xmlLocation;
    Hope this helps others who have struggled.

  • Security flaw-To use CSOM/Javascript code for Custom Office365(Sharepoint Online) application

    Hi,
    I've developed custom application in Office365(Sharepoint Online) using CSOM/Javascript. Security team from client side has been reported one major issue to the our application that any end user can comment our CSOM/Javascript code and bypass the validation
     or can update / insert into sharepoint list item using developer tool/ Console in Google Chrome(F12 Key).
    Also end user can write his own separate code in console of Google Chrome (Developer Tool / F12) and can update / insert  into Sharepoint List.
    Note:- End user has Add, Edit, View permission on all Sharepoint List.
    This is one major security flaw of the Sharepoint/Office365 to use CSOM /Javascript for writing code, to overcome this issue could you please provide me some solution.
    Your help would be greatly appreciated!!!  
    Looking for reply.
    Thanks,
    Mahesh Sherkar
    Web: http://Mahesh-Sherkar.com
    Email: [email protected]

    Hello Paras, 
    Did you get any solution for this? I think your website was implemented this form. Can you please tell me the way how I can achieve it? I am also facing same problem. Please reply me as early as possible.
    Thanks,
    Mihir

  • Using CreatedModifiedInfo in custom webpart SharePoint 2013

    We've used those lines of code in SharePoint 2010 for a long time and we never had any issues with them. We've created a custom webpart and added the modifiedinfo toolbar to the bottom. Now we've moved our site from SP2010 to a SP2013 while still using SP2010
    UI. So we're still in 2010 mode while this problem occurs.
    internal static void AddToolBarInfo(this ToolBar toolBar, SPControlMode mode)
    info = new CreatedModifiedInfo();
    info.ControlMode = mode;
    toolBar.Buttons.Controls.Add(info);
    The control is added properly but no information are shown inside the toolbar. Somehow not many persons have used this toolbar, so I'm not able to find many informations about it. Since we've never done more than adding the control, I don't know where to
    start looking when the control is not properly filled.
    Regards Andreas MCPD SharePoint 2010. Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.

    Has anyone used the CreatedModifiedInfo before in his code?
    Regards Andreas MCPD SharePoint 2010. Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.

  • Custom refiners not translated on Search Page

    Hi,
    I have created a product catalog site.
    On the category page i have added some custom refiners, all using the excelent tutorial:
    http://blogs.technet.com/b/tothesharepoint/archive/2013/06/20/stage-15-add-refiners-for-faceted-navigation-to-a-publishing-site.aspx
    All of this works fine... the refiners are translated in the category page of the product catalog.
    I have created my own search page and i have added the same refiners to it. The refiners themselves work fine but they are not translated.
    I'm wondering why they are translated on the category page, but not on the search page?
    Best Regards,
    Peter

    Ok... i figured it out.
    Turns out, you need to use the "Display Name" for each refiner defined on the refiners web part.
    Still is bizarre that the translation doesn't work in this case.

  • Customizing the Sharepoint 2013 inbuilt "SearchResult" webpart

     
    Acutally am working on the requirement,where i need to display the search results using Sharepoint 2013 inbuilt "SearchResult" webpart and where the results can be filtered by placing refining control in other Refiniment webpart in the same page.
    here come the question is "how i can access the displayed results in my "searchresults" webpart in my custom code.,where i have to access the path from the results on page and downloading the files based on path content.... please guys.your
    suggestions will be very helpful for my task...

    Hi,
    You can use the display templates to customize the results.  Please refer to the following article how to create the display template
    Introduction to SharePoint 2013 Display Templates
    Understanding how item display templates and hit highlighting work in SharePoint
    Server 2013
    Please mark it answered, if your problem resolved.

  • How to modify wrong menu translation

    Hi. Not a big issue but the Italian localization for showing documents in outline view, inside the main menu, is completely misunderstanding.
    Instead of "Mostra struttura documento" (as reported in the help file) it shows "Mostra bordo documento". The english translation for bordo is border, so it sound like show border and not show outline!! The tooltip is wrong too. The icon title is right. So i think there is a mistake in the resource file. Is there a way for correcting the resource file?
    Im using Pages version 4.0.3
    Tanks and best regards.
    Message was edited by: Maipiki

    Alas, it's not the only one oddity of this kind.
    Apple translators don't make the difference between the different meaning of 'outline'.
    Same thing with 'baseline' which the often translate with the equivalent of 'line spacing'.
    More, they use different translation sfor the same word in a given program or in the programs of iWork package.
    I built a complete list of menu items used in the 18 localized versions of iWork.
    I will upload it soon on my idisk;
    Yvan KOENIG (VALLAURIS, France) samedi 10 octobre 2009 18:56:11

  • Wrong Dutch translation in iTunes 8.0 (Windows XP/Vista)

    Hello there!
    I just noticed a small translation error in iTunes 8.0, it's about the free space available on an ipod/iphone.
    In English the grey bar at the bottom of the screen reads "Free", which is alright, but if you have your language set to Dutch, it reads "Gratis", which is a whole different translation of the word "free".
    "Gratis" is "Free" as in: "Buy this book and get a free pencil with it."
    The right translation of "Free" as in "free space" would be "Over", "Resterend", "Resterende ruimte", "Vrij" or "Vrije ruimte".
    I don't know if anyone else noticed this error in his own language, but it's a pretty clumsy thing to leave in iTunes. (I did find it quite amusing by the way.)
    Steven

    You're being very polite there, JvetS. I can't remember ever seeing such a translation blunder from a major technology company. And it's new in iTunes 8.0; in earlier versions Apple didn't confuse "free beer" with "free space"...
    Also it's quite funny, as you said. I first thought it referred to all the free AppStore applications on my phone.

  • Bug UIX 2.2.8: wrong German translation for "next n" rows

    Hi, there is a minor bug in the German translation of the table paging feature (previos n / next n rows) in UIX 2.2.8.
    In German the text "next <n>" sould be translated to "weitere <n>" and not to "weiter <n>".
    Thanks, Markus

    Markus,
    I filed it as a bug.
    Danke für die Hilfe.
    Frank

  • [Incubator][Draw2d] Wrong Path translation in SWTGraphics

    Hello RAP devs,
    I'm currently using the incubation library draw2d + GEF (version 0.1.20141203) for RAP and I have found a strange behavior on SWT "Path" translation. After hours of debugging, I have found that in the class "SWTGraphics", the method "#initTransform" just WARNS the developer about a regression on RAP but does not fix anything... Indeed when the user uses the scrollbar on a GEF diagram, the shapes that use a SWT Path are not moved accordingly.
    To solve this behavior, I have created a method that only works to translate Path(s) but it's already a beginning =). Here is the new implementation of "#fillPath" and "#drawPath" in "SWTGraphics":
    @Override
    public void drawPath(Path path) {
    checkPaint();
    path = translatePath(path);
    gc.drawPath(path);
    @Override
    public void fillPath(Path path) {
    checkFill();
    path = translatePath(path);
    gc.fillPath(path);
    * RAP patch to avoid the unavailable SWT TRANSFORM. Only works for
    * translations
    * @param path
    * the path to translate
    * @return a new path if a translation is to be done
    private Path translatePath(Path path) {
    if (translateX != 0 || translateY != 0) {
    PathData data = new PathData();
    PathData oldData = path.getPathData();
    data.types = oldData.types;
    data.points = new float[oldData.points.length];
    for (int count = 0; count < oldData.points.length; count++) {
    if (count % 2 == 0) {
    data.points[count] = oldData.points[count] + translateX;
    } else {
    data.points[count] = oldData.points[count] + translateY;
    return new Path(path.getDevice(), data);
    return path;
    You can find here the enhancement proposal on bugzilla: https://bugs.eclipse.org/bugs/show_bug.cgi?id=471544
    Best regards,
    Jerome

    see my answer here: http://forum.java.sun.com/thread.jsp?forum=34&thread=304647
    ps. if you know a little of XPath, this is why text() is a special kind of node()...

  • Wrong currency translation - weird problem

    I am trying to perform currency translation but for some reason the number is appearing different every time I run the currency translation. The translated values are 2 times +1 times the earlier translated value.
    We have the followign Rates:
    JPY =1 -report
    USD_M = 0.5
    USD = 0.5 -report
    All rates are M[ultiply]
    Translation 1 (for USD_M company)
    LC data = 1000 (no rate)
    USD  data =  1000 (rate=1 i expect this to be triangulated)
    JPY data = 500 (rate=0.5)
    Translation 2 (for USD_M company) - we just run FX Translation from DM again
    LC data = 1000 (no rate)
    USD  data =  2500 (rate=2.5 i expect 1)
    JPY data = 1250 (rate=1.25 i expect 0.5)
    I am using standrad script logic (FXTrans).
    Rate app is set to YTD = N/A (that is the only setting we have) we input all rates under PERIODIC.
    Also we removed the default logic in the Rate app and keyed directly into RateCalc to see if that was the problem.
    I am just wondering how the system is getting this different multiplier when I run the translation every time?
    Edited by: rohitktm on Oct 12, 2010 5:47 AM
    Edited by: rohitktm on Oct 12, 2010 5:48 AM
    Edited by: rohitktm on Oct 12, 2010 5:48 AM

    Please ensure you are on the latest version of SQL SP.
    Then you can start investigating.
    Actually i noticed a pattern with your exchange rates. It seems the rate is actually tripled (i.e 0.5*3).
    It cannot be a coincdence that you have 3 members in RPTCURRENCY.
    Ensure you are passing LC to FXTRANS and not LC,USD,JPY as this would cause the problem you are having
    Perhaps you can post your FXTRANS script, in the meantime try putting
    *XDIM_MEMBERSET RPTCURRENCY=LC
    at the top of your FXTRANS logic file.
    This sounds like a very obscure problem, so please check your SQL and then App setup before changing anything.

  • System Error - Wrong Parameter (translated)

    Whenever i try to start Adobe Photoshop Album 2,0 i recieve this error and the program shuts down instantly.
    I dont get this error with any other program.
    I run Windows XP Professional.

    Your software is hopelessly outdated by about a century. Sorry, this most likely will never work. Probably some system library on the system is a wrong version or a specific Windows Update patch gets in the way, but again, as I said your software is so old it would be miraculous if it actually would work at all...
    Mylenium

Maybe you are looking for