博客地址:http://blog.csdn.net/FoxDave

This post will talk about how to enable sharepoint online site multilingual support.

Below are the labels supported by SharePoint online when site language is changed.

  • Site Title
  • Site Description
  • List Title
  • List Description
  • Content Type Name
  • Content Type Description
  • Site column Title
  • Site column Description
  • So let us see how to enable sharepoint online site multilingual function, which sharepoint users can specify their prefer language showed in the site by themselves.

    There are two mainly parts to be done.

    1. Enable multiple languages in the site

    Open your sharepoint online site, go to site settings, click Language Settings in the Site Administration part.

    In the language settings page, check languages you want the sharepoint online site supports. Click OK button to save.

    Now since the site supports multi-languages, it will display language depens on what end user specified.

    In the Site page, click View account via the user label part.

    In the Settings part, change the language to Chinese, for example.

    Tip: It will not take affect immediately, you need to wait for a while.

    Now let us back to the site, and we can see the site has displayed as Chinese.

    SharePoint online Multilingual support - Settings的更多相关文章

    1. SharePoint online Multilingual support - Development(1)

      博客地址:http://blog.csdn.net/FoxDave 上一节讲了SharePoint Online网站多语言的实现原理机制,本节主要从编程的角度来谈一下如何进行相关的设置. 下面列出 ...

    2. SharePoint online Multilingual support - Development(2)

      博客地址:http://blog.csdn.net/FoxDave 上一节讲了如何通过Code的方式设置Site和List级别的国际化,本节介绍一下如何设置Content type和Site co ...

    3. Multi-lingual Support

      Multi-lingual Support One problem with dealing with non-Latin characters programmatically is that, f ...

    4. Device Channels in SharePoint 2013

      [FROM:http://blog.mastykarz.nl/device-channels-sharepoint-2013/] One of the new features of SharePoi ...

    5. SharePoint Security and Permission System Overview

      转:http://www.sharepointblues.com/2010/09/01/sharepoint-security-and-permission-system-overview/ Shar ...

    6. SharePoint 2013 搜索功能,列表项目不能完全被索引

      描述 最近一个站点,需要开启搜索功能,然后创建内容源,开始爬网,发现列表里只有一部分被索引,很多项目没有被索引,甚是奇怪,如下图(其实列表里有80几条项目). 首先爬网账号是系统账号.服务器管理员,所 ...

    7. INCOIN Importing Multilingual Items (Doc ID 278126.1)

      APPLIES TO: Oracle Inventory Management - Version: 11.5.9 to 11.5.10.CU2 - Release: 11.5 to 11.5 GOA ...

    8. SharePoint自动化系列——通过Coded UI录制脚本自动化创建SharePoint Designer Reusable Workflow

      Coded UI非常好,我开始还在想,怎么样能让一个通过SharePoint Designer创建的Workflow publish三百五十次?想不到一个好的方法,也不知道SharePoint Des ...

    9. SharePoint 2013 - Breadcrumb

      By default SharePoint 2013 doesn’t have a breadcrumb (like the 2010 version used to have). This was ...

    随机推荐

    1. 分享基于EF+WCF的通用三层架构及解析

      本项目结合EF 4.3及WCF实现了经典三层架构,各层面向接口,WCF实现SOA,Repository封装调用,在此基础上实现了WCFContext,动态服务调用及一个分页的实例. 1. 项目架构图: ...

    2. BGP - 3,BGP重要概念(EBGP,IBGP,防环/黑洞/全互连/同步)

      1,防环/黑洞/同步/全互连(为出现大于号,现在通常都是要下一跳可达+关同步) a)EBGP邻居传来的路由可以通过AS_PATH防环,所以收到的不会有问题,因此直接是优化的(>),也就是直接装表 ...

    3. 基于react的记账簿开发

      前言 前端是纯 React,后端通过 axios 库请求服务器获得数据. 源码: https://github.com/hfpp2012/react-accounts-app 项目详解: https: ...

    4. Linux系统中文件定位与查找

      Linux系统中文件查找 关键词 文件查找 | find | locate 本文主要介绍有关文件查找的两个命令——find和locate,以及压缩打包的命令——compress, gzip,bzip2 ...

    5. Roman To Integer leetcode java

      问题描述: Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range fr ...

    6. python记录_day04(补充)

      列表删除 切片删除 del lis[1:3]  # 删除索引是1,2的元素 修改 索引切片修改 # 修改 lst = ["太白", "太", "五&q ...

    7. 牛客寒假算法基础集训营6 J-迷宫

      题目请点这里 分析:这是一道BFS的模板题,构造一个队列,将每个满足条件的(不超过边界,不超过左右移动次数的限制)位置推入队列,如果不是障碍物且没到达过,就将可到达位置的个数加1 此外,注意这里的输入 ...

    8. 廖雪峰网站:学习python基础知识—循环(四)

      一.循环 1.for names = ['Michal', 'Bob', 'tracy'] for name in names: print(name) sum = 0 for x in [1, 2, ...

    9. 『MXNet』第二弹_Gluon构建模型

      上节用了Sequential类来构造模型.这里我们另外一种基于Block类的模型构造方法,它让构造模型更加灵活,也将让你能更好的理解Sequential的运行机制. 回顾: 序列模型生成 层填充 初始 ...

    10. yield生成器

      def say_hi(): while True: print("before") ret0 = "返回值" msg = yield ret0 #yield后的 ...