├── .gitignore ├── C# ├── Apps for Office-Loading and writing Office Open XML.htm ├── CG_LoadingWritingOOXML_fig01.png ├── CG_LoadingWritingOOXML_fig02a.png ├── CG_LoadingWritingOOXML_fig02b.png ├── LoadingAndWritingOOXML.sln ├── LoadingAndWritingOOXML │ ├── LoadingAndWritingOOXML.csproj │ └── LoadingAndWritingOOXMLManifest │ │ ├── LoadingAndWritingOOXML.xml │ │ └── SharePointProjectItem.spdata └── LoadingAndWritingOOXMLWeb │ ├── App │ ├── App.css │ ├── App.js │ └── LoadingAndWritingOOXML │ │ ├── LoadingAndWritingOOXML.css │ │ ├── LoadingAndWritingOOXML.html │ │ └── LoadingAndWritingOOXML.js │ ├── Images │ ├── Close.png │ ├── taskpane_16x.png │ ├── taskpane_32x.png │ └── taskpane_80x.png │ ├── LoadingAndWritingOOXMLWeb.csproj │ ├── OOXMLSamples │ ├── Chart.xml │ ├── ChartMarkup.xml │ ├── ContentControl.xml │ ├── FormatForMarkup.xml │ ├── FormattedImage.xml │ ├── FormattedImageMarkup.xml │ ├── Sections.xml │ ├── ShapeWithText.xml │ ├── SimpleImage.xml │ ├── SimpleImageMarkup.xml │ ├── SmartArt.xml │ ├── TableStyled.xml │ ├── TableWithDirectFormat.xml │ ├── TextBoxWordArt.xml │ ├── TextWithDirectFormat.xml │ └── TextWithStyle.xml │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── Office │ │ ├── 1.0 │ │ │ ├── ar-sa │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── bg-bg │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── cs-cz │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── da-dk │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── de-de │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── el-gr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── en-us │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── es-es │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── et-ee │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── excel-15.debug.js │ │ │ ├── excel-15.js │ │ │ ├── excelwebapp-15.debug.js │ │ │ ├── excelwebapp-15.js │ │ │ ├── fi-fi │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── fr-fr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── he-il │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hi-in │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hr-hr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hu-hu │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── id-id │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── it-it │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ja-jp │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── kk-kz │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ko-kr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── lt-lt │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── lv-lv │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ms-my │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── nb-no │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── nl-nl │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── office-vsdoc.js │ │ │ ├── office.debug.js │ │ │ ├── office.js │ │ │ ├── outlook-15.debug-vsdoc.js │ │ │ ├── outlook-15.debug.js │ │ │ ├── outlook-15.js │ │ │ ├── outlookwebapp-15.debug.js │ │ │ ├── outlookwebapp-15.js │ │ │ ├── pl-pl │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── powerpoint-15.debug.js │ │ │ ├── powerpoint-15.js │ │ │ ├── project-15.debug.js │ │ │ ├── project-15.js │ │ │ ├── pt-br │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── pt-pt │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ro-ro │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ru-ru │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sk-sk │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sl-si │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sr-latn-cs │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sv-se │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── th-th │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── tr-tr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── uk-ua │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── vi-vn │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── word-15.debug.js │ │ │ ├── word-15.js │ │ │ ├── zh-cn │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ └── zh-tw │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ └── MicrosoftAjax.js │ ├── _officeintellisense.js │ └── _references.js │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── fonts │ ├── office365icons.eot │ ├── office365icons.svg │ ├── office365icons.ttf │ └── office365icons.woff │ └── packages.config ├── LICENSE ├── README.md ├── Word-Add-in-Load-and-write-Open-XML.yml └── description ├── 04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css ├── 70dee213-4853-47b2-abcf-55a982abb2c4image.png ├── 9a7aa2da-4f99-4519-8cd1-f341060ff9beimage.png ├── Brand.css ├── Combined.css ├── Galleries.css ├── Layout.css ├── iframedescription.css ├── image.png └── offline.js /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | build/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studo 2015 cache/options directory 26 | .vs/ 27 | 28 | # MSTest test Results 29 | [Tt]est[Rr]esult*/ 30 | [Bb]uild[Ll]og.* 31 | 32 | # NUNIT 33 | *.VisualState.xml 34 | TestResult.xml 35 | 36 | # Build Results of an ATL Project 37 | [Dd]ebugPS/ 38 | [Rr]eleasePS/ 39 | dlldata.c 40 | 41 | *_i.c 42 | *_p.c 43 | *_i.h 44 | *.ilk 45 | *.meta 46 | *.obj 47 | *.pch 48 | *.pdb 49 | *.pgc 50 | *.pgd 51 | *.rsp 52 | *.sbr 53 | *.tlb 54 | *.tli 55 | *.tlh 56 | *.tmp 57 | *.tmp_proj 58 | *.log 59 | *.vspscc 60 | *.vssscc 61 | .builds 62 | *.pidb 63 | *.svclog 64 | *.scc 65 | 66 | # Chutzpah Test files 67 | _Chutzpah* 68 | 69 | # Visual C++ cache files 70 | ipch/ 71 | *.aps 72 | *.ncb 73 | *.opensdf 74 | *.sdf 75 | *.cachefile 76 | 77 | # Visual Studio profiler 78 | *.psess 79 | *.vsp 80 | *.vspx 81 | 82 | # TFS 2012 Local Workspace 83 | $tf/ 84 | 85 | # Guidance Automation Toolkit 86 | *.gpState 87 | 88 | # ReSharper is a .NET coding add-in 89 | _ReSharper*/ 90 | *.[Rr]e[Ss]harper 91 | *.DotSettings.user 92 | 93 | # JustCode is a .NET coding addin-in 94 | .JustCode 95 | 96 | # TeamCity is a build add-in 97 | _TeamCity* 98 | 99 | # DotCover is a Code Coverage Tool 100 | *.dotCover 101 | 102 | # NCrunch 103 | _NCrunch_* 104 | .*crunch*.local.xml 105 | 106 | # MightyMoose 107 | *.mm.* 108 | AutoTest.Net/ 109 | 110 | # Web workbench (sass) 111 | .sass-cache/ 112 | 113 | # Installshield output folder 114 | [Ee]xpress/ 115 | 116 | # DocProject is a documentation generator add-in 117 | DocProject/buildhelp/ 118 | DocProject/Help/*.HxT 119 | DocProject/Help/*.HxC 120 | DocProject/Help/*.hhc 121 | DocProject/Help/*.hhk 122 | DocProject/Help/*.hhp 123 | DocProject/Help/Html2 124 | DocProject/Help/html 125 | 126 | # Click-Once directory 127 | publish/ 128 | 129 | # Publish Web Output 130 | *.[Pp]ublish.xml 131 | *.azurePubxml 132 | # TODO: Comment the next line if you want to checkin your web deploy settings 133 | # but database connection strings (with potential passwords) will be unencrypted 134 | *.pubxml 135 | *.publishproj 136 | 137 | # NuGet Packages 138 | *.nupkg 139 | # The packages folder can be ignored because of Package Restore 140 | **/packages/* 141 | # except build/, which is used as an MSBuild target. 142 | !**/packages/build/ 143 | # Uncomment if necessary however generally it will be regenerated when needed 144 | #!**/packages/repositories.config 145 | 146 | # Windows Azure Build Output 147 | csx/ 148 | *.build.csdef 149 | 150 | # Windows Store app package directory 151 | AppPackages/ 152 | 153 | # Others 154 | *.[Cc]ache 155 | ClientBin/ 156 | [Ss]tyle[Cc]op.* 157 | ~$* 158 | *~ 159 | *.dbmdl 160 | *.dbproj.schemaview 161 | *.pfx 162 | *.publishsettings 163 | node_modules/ 164 | bower_components/ 165 | 166 | # RIA/Silverlight projects 167 | Generated_Code/ 168 | 169 | # Backup & report files from converting an old project file 170 | # to a newer Visual Studio version. Backup files are not needed, 171 | # because we have git ;-) 172 | _UpgradeReport_Files/ 173 | Backup*/ 174 | UpgradeLog*.XML 175 | UpgradeLog*.htm 176 | 177 | # SQL Server files 178 | *.mdf 179 | *.ldf 180 | 181 | # Business Intelligence projects 182 | *.rdl.data 183 | *.bim.layout 184 | *.bim_*.settings 185 | 186 | # Microsoft Fakes 187 | FakesAssemblies/ 188 | 189 | # Node.js Tools for Visual Studio 190 | .ntvs_analysis.dat 191 | 192 | # Visual Studio 6 build log 193 | *.plg 194 | 195 | # Visual Studio 6 workspace options file 196 | *.opt 197 | -------------------------------------------------------------------------------- /C#/CG_LoadingWritingOOXML_fig01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/CG_LoadingWritingOOXML_fig01.png -------------------------------------------------------------------------------- /C#/CG_LoadingWritingOOXML_fig02a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/CG_LoadingWritingOOXML_fig02a.png -------------------------------------------------------------------------------- /C#/CG_LoadingWritingOOXML_fig02b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/CG_LoadingWritingOOXML_fig02b.png -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXML.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LoadingAndWritingOOXML", "LoadingAndWritingOOXML\LoadingAndWritingOOXML.csproj", "{E8882AB9-7539-4175-AE22-E7D2E21216E4}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LoadingAndWritingOOXMLWeb", "LoadingAndWritingOOXMLWeb\LoadingAndWritingOOXMLWeb.csproj", "{2A9E61CC-541D-4FE9-AF11-853B80B9EF20}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E8882AB9-7539-4175-AE22-E7D2E21216E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E8882AB9-7539-4175-AE22-E7D2E21216E4}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E8882AB9-7539-4175-AE22-E7D2E21216E4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {E8882AB9-7539-4175-AE22-E7D2E21216E4}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {E8882AB9-7539-4175-AE22-E7D2E21216E4}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {E8882AB9-7539-4175-AE22-E7D2E21216E4}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | {2A9E61CC-541D-4FE9-AF11-853B80B9EF20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {2A9E61CC-541D-4FE9-AF11-853B80B9EF20}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {2A9E61CC-541D-4FE9-AF11-853B80B9EF20}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {2A9E61CC-541D-4FE9-AF11-853B80B9EF20}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXML/LoadingAndWritingOOXML.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {E8882AB9-7539-4175-AE22-E7D2E21216E4} 8 | Library 9 | Properties 10 | LoadingAndWritingOOXML 11 | LoadingAndWritingOOXML 12 | v4.5 13 | 15.0 14 | 512 15 | {C1CDDADD-2546-481F-9697-4EA41081F2FC};{14822709-B5A1-4724-98CA-57A101D1B079};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 16 | False 17 | {3535bc96-6a00-402a-bf4f-dc64c1e0f00d} 18 | {676469b3-aa1e-442a-b706-fc6ad556e8a0} 19 | {73ef274f-1384-4bf3-ba42-b95e3460df22} 20 | {ea64ede4-7a07-4968-9c43-8775089e0822} 21 | {6017f452-f5bb-46d1-8942-368bd27f3b3f} 22 | OfficeApp 23 | 24 | 25 | true 26 | full 27 | false 28 | bin\Debug\ 29 | DEBUG;TRACE 30 | prompt 31 | 4 32 | false 33 | 34 | 35 | pdbonly 36 | true 37 | bin\Release\ 38 | TRACE 39 | prompt 40 | 4 41 | false 42 | 43 | 44 | 45 | {396d8833-c4c3-45fb-aafd-1effe479a546} 46 | 47 | 48 | manifest-oemanifest 49 | 50 | 51 | 52 | 53 | {2A9E61CC-541D-4FE9-AF11-853B80B9EF20} 54 | LoadingAndWritingOOXMLWeb 55 | True 56 | Web 57 | SharePointWebProjectOutput 58 | LoadingAndWritingOOXMLWeb 59 | False 60 | 61 | 62 | 63 | 11.0 64 | $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) 65 | 66 | 67 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXML/LoadingAndWritingOOXMLManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/App/App.css: -------------------------------------------------------------------------------- 1 | /* Common app styling */ 2 | 3 | #content-header { 4 | background: #2a8dd4; 5 | color: #fff; 6 | position: absolute; 7 | top: 0; 8 | left: 0; 9 | width: 100%; 10 | height: 80px; /* Fixed header height */ 11 | overflow: hidden; /* Disable scrollbars for header */ 12 | } 13 | 14 | #content-main { 15 | background: #fff; 16 | position: fixed; 17 | top: 80px; /* Same value as #content-header's height */ 18 | left: 0; 19 | right: 0; 20 | bottom: 0; 21 | overflow: auto; /* Enable scrollbars within main content section */ 22 | } 23 | 24 | .padding { 25 | padding: 15px; 26 | } 27 | 28 | #notification-message { 29 | background-color: #818285; 30 | color: #fff; 31 | position: absolute; 32 | width: 100%; 33 | min-height: 80px; 34 | right: 0; 35 | z-index: 100; 36 | bottom: 0; 37 | display: none; /* Hidden until invoked */ 38 | } 39 | 40 | #notification-message-header { 41 | font-size: medium; 42 | color: #fff; 43 | margin-bottom: 10px; 44 | } 45 | 46 | #notification-message-body { 47 | color: #fff; 48 | } 49 | 50 | #notification-message-close { 51 | background-image: url("../Images/Close.png"); 52 | background-repeat: no-repeat; 53 | width: 24px; 54 | height: 24px; 55 | position: absolute; 56 | right: 5px; 57 | top: 5px; 58 | cursor: pointer; 59 | } 60 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/App/App.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. 3 | */ 4 | /* Common app functionality */ 5 | 6 | var app = (function () { 7 | "use strict"; 8 | 9 | var app = {}; 10 | 11 | // Common initialization function (to be called from each page) 12 | app.initialize = function () { 13 | $('body').append( 14 | '
' + 15 | '
' + 16 | '
' + 17 | '
' + 18 | '
' + 19 | '
' + 20 | '
'); 21 | 22 | $('#notification-message-close').click(function () { 23 | $('#notification-message').hide(); 24 | }); 25 | 26 | 27 | // After initialization, expose a common notification function 28 | app.showNotification = function (header, text) { 29 | $('#notification-message-header').text(header); 30 | $('#notification-message-body').text(text); 31 | $('#notification-message').slideDown('fast'); 32 | }; 33 | }; 34 | 35 | return app; 36 | })(); 37 | // ********************************************************* 38 | // 39 | // Word-Add-in-Load-and-write-Open-XML, https://github.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML 40 | // 41 | // Copyright (c) Microsoft Corporation 42 | // All rights reserved. 43 | // 44 | // MIT License: 45 | // Permission is hereby granted, free of charge, to any person obtaining 46 | // a copy of this software and associated documentation files (the 47 | // "Software"), to deal in the Software without restriction, including 48 | // without limitation the rights to use, copy, modify, merge, publish, 49 | // distribute, sublicense, and/or sell copies of the Software, and to 50 | // permit persons to whom the Software is furnished to do so, subject to 51 | // the following conditions: 52 | // 53 | // The above copyright notice and this permission notice shall be 54 | // included in all copies or substantial portions of the Software. 55 | // 56 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 57 | // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 58 | // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 59 | // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 60 | // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 61 | // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 62 | // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 63 | // 64 | // ********************************************************* 65 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/App/LoadingAndWritingOOXML/LoadingAndWritingOOXML.css: -------------------------------------------------------------------------------- 1 | /* Page-specific styling */ 2 | 3 | button{ 4 | width: 150px; 5 | height: 25px; 6 | margin-top:15px; 7 | padding: 0px; 8 | } -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/Images/Close.png -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Images/taskpane_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/Images/taskpane_16x.png -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Images/taskpane_32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/Images/taskpane_32x.png -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Images/taskpane_80x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/Images/taskpane_80x.png -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/OOXMLSamples/ContentControl.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | [This text is inside a content control that has its container hidden. You can bind to a content control to add or interact with content at a specified location in the document.] 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/OOXMLSamples/FormatForMarkup.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/OOXMLSamples/FormattedImageMarkup.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/OOXMLSamples/Sections.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/OOXMLSamples/SimpleImageMarkup.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/OOXMLSamples/TextWithDirectFormat.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | This text has formatting directly applied to achieve its font size, color, line spacing, and paragraph spacing. 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/OOXMLSamples/TextWithStyle.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | This text is formatted using the Heading 1 paragraph style. 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("LoadingAndWritingOOXMLWeb")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("LoadingAndWritingOOXMLWeb")] 13 | [assembly: AssemblyCopyright("Copyright © 2013")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("f4f198f1-654a-4801-8dec-91f19ad6d8c3")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ar-sa/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="نوع الربط المحدد غير متوافق مع العنصر المسمى الموفر.";Strings.OfficeOM.L_EventHandlerNotExist="نوع الحدث المحدد غير معتمد على هذا الكائن.";Strings.OfficeOM.L_UnknownBindingType="نوع الربط غير معتمد.";Strings.OfficeOM.L_InvalidNode="العقدة غير صالحة";Strings.OfficeOM.L_NotImplemented="لم يتم تنفيذ الدالة {0}.";Strings.OfficeOM.L_NoCapability="لا تملك الأذونات الكافية لهذا الإجراء.";Strings.OfficeOM.L_SettingsCannotSave="تعذر حفظ الإعدادات.";Strings.OfficeOM.L_InvalidBinding="الربط غير صالح";Strings.OfficeOM.L_BindingCreationError="خطأ في إنشاء الربط";Strings.OfficeOM.L_SelectionNotSupportCoercionType="التحديد الحالي غير متوافق مع نوع الاندماج المحدد.";Strings.OfficeOM.L_InvalidBindingError="خطأ الربط غير صالح";Strings.OfficeOM.L_InvalidGetStartRowColumn="قيم startRow أو startColumn المحددة غير صحيحة.";Strings.OfficeOM.L_CannotWriteToSelection="لا يمكن الكتابة إلى التحديد الحالي.";Strings.OfficeOM.L_IndexOutOfRange="الفهرس خارج النطاق.";Strings.OfficeOM.L_SettingsStaleError="خطأ في الإعدادات القديمة";Strings.OfficeOM.L_ReadSettingsError="خطأ في إعدادات القراءة";Strings.OfficeOM.L_CoercionTypeNotSupported="نوع الاندماج المحدد غير معتمد.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="التطبيق {0} غير موجود. لم يتم استدعاء Microsoft.Office.WebExtension.initialize (السبب).";Strings.OfficeOM.L_OverwriteWorksheetData="فشلت عملية التعيين لأن كائن البيانات الذي تم توفيره سيكتب فوق البيانات أو سينقلها.";Strings.OfficeOM.L_UnsupportedEnumeration="قائمة تعداد غير معتمدة";Strings.OfficeOM.L_InvalidParameters="للدالة {0} معلمات غير صالحة.";Strings.OfficeOM.L_DataNotMatchCoercionType="نوع كائن البيانات المحدد غير متوافق مع التحديد الحالي.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="قائمة التعداد غير معتمدة في تطبيق المضيف الحالي.";Strings.OfficeOM.L_InvalidCoercion="نوع الاندماج غير صالح";Strings.OfficeOM.L_NotSupportedEventType="نوع الحدث المحدد {0} غير معتمد.";Strings.OfficeOM.L_UnsupportedDataObject="نوع كائن البيانات الذي تم توفيره غير معتمد.";Strings.OfficeOM.L_GetDataIsTooLarge="مجموعة البيانات المطلوبة كبيرة جداً.";Strings.OfficeOM.L_AppNameNotExist="لا يوجد اسم تطبيق لـ {0}.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="الرجاء إجراء تحديد.";Strings.OfficeOM.L_MultipleNamedItemFound="تم العثور على عدة كائنات بالاسم نفسه.";Strings.OfficeOM.L_DataNotMatchBindingType="كائن البيانات المحدد غير متوافق مع نوع الربط.";Strings.OfficeOM.L_NotSupportedBindingType="نوع الربط المحدد {0} غير معتمد.";Strings.OfficeOM.L_InitializeNotReady="لم يتم تحميل Office.js بشكل كامل بعد. يرجى إعادة المحاولة لاحقاً للتأكد من إضافة رمز التهيئة في وظيفة Office.initialize.";Strings.OfficeOM.L_ShuttingDown="فشلت العملية لأن البيانات غير حديثة على الخادم.";Strings.OfficeOM.L_OperationNotSupported="العملية غير معتمدة.";Strings.OfficeOM.L_DocumentReadOnly="العملية المطلوبة غير مسموح بها في وضع المستند الحالي.";Strings.OfficeOM.L_NamedItemNotFound="العنصر المسمى غير موجود.";Strings.OfficeOM.L_InvalidApiCallInContext="استدعاء API غير صالح في السياق الحالي.";Strings.OfficeOM.L_SetDataIsTooLarge="كائن البيانات المحدد طويل جداً.";Strings.OfficeOM.L_DataWriteError="خطأ في كتابة البيانات";Strings.OfficeOM.L_InvalidBindingOperation="عملية الربط غير صالحة";Strings.OfficeOM.L_FunctionCallFailed="فشل استدعاء الدالة {0}، رمز الخطأ: {1}.";Strings.OfficeOM.L_DataNotMatchBindingSize="لا يتطابق كائن البيانات الذي تم توفيره مع حجم التحديد الحالي.";Strings.OfficeOM.L_SaveSettingsError="خطأ في إعدادات الحفظ";Strings.OfficeOM.L_InvalidSetStartRowColumn="قيم startRow أو startColumn المحددة غير صحيحة.";Strings.OfficeOM.L_InvalidFormat="خطأ تنسيق غير صالح";Strings.OfficeOM.L_BindingNotExist="الربط المحدد غير موجود.";Strings.OfficeOM.L_EventHandlerAdditionFailed="فشل في إضافة معالج الحدث.";Strings.OfficeOM.L_SettingNameNotExist="اسم الإعداد المحدد غير موجود.";Strings.OfficeOM.L_InvalidAPICall="استدعاء API غير صالح";Strings.OfficeOM.L_EventRegistrationError="خطأ في تسجيل الأحداث";Strings.OfficeOM.L_NonUniformPartialSetNotSupported='لا يمكن استخدام معلمات الإحداثيات مع "جدول" بنوع الاندماج عندما يحتوي الجدول على خلايا مدمجة.';Strings.OfficeOM.L_RedundantCallbackSpecification="لا يمكن تعيين رد الاستدعاء في كل من قائمة الوسائط وفي الكائن الاختياري.";Strings.OfficeOM.L_CustomXmlError="خطأ في XML المخصص.";Strings.OfficeOM.L_SettingsAreStale="تعذر حفظ الإعدادات نظراً لأنها غير حديثة.";Strings.OfficeOM.L_TooManyOptionalFunction="دالات اختيارية متعددة في قائمة المعلمات";Strings.OfficeOM.L_MissingRequiredArguments="فقدان بعض الوسيطات المطلوبة";Strings.OfficeOM.L_NonUniformPartialGetNotSupported='لا يمكن استخدام معلمات الإحداثيات مع "جدول" بنوع الاندماج عندما يحتوي الجدول على خلايا مدمجة.';Strings.OfficeOM.L_HostError="خطأ المضيف";Strings.OfficeOM.L_InvalidSelectionForBindingType="لا يمكن إنشاء ربط مع التحديد الحالي ونوع الربط المحدد.";Strings.OfficeOM.L_TooManyOptionalObjects="كائنات اختيارية متعددة في قائمة المعلمات";Strings.OfficeOM.L_EventHandlerRemovalFailed="فشلت عملية إزالة معالج الحدث.";Strings.OfficeOM.L_BindingToMultipleSelection="لا يتم اعتماد التحديدات المتقطعة.";Strings.OfficeOM.L_DataReadError="خطأ في قراءة البيانات";Strings.OfficeOM.L_InternalErrorDescription="حدث خطأ داخلي.";Strings.OfficeOM.L_InvalidDataFormat="تنسيق كائن البيانات المحدد غير صحيح.";Strings.OfficeOM.L_DataStale="البيانات غير حديثة";Strings.OfficeOM.L_GetSelectionNotSupported="التحديد الحالي غير معتمد.";Strings.OfficeOM.L_PermissionDenied="تم رفض الإذن";Strings.OfficeOM.L_InvalidDataObject="كائن البيانات غير صالح";Strings.OfficeOM.L_SelectionCannotBound="يتعذر الربط بالتحديد الحالي.";Strings.OfficeOM.L_BadSelectorString="لم يتم تنسيق السلسة التي تم تمريرها إلى المحدد بشكل سليم أو أنها غير معتمدة.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="قيم rowCount أو columnCount المحددة غير صحيحة.";Strings.OfficeOM.L_OsfControlTypeNotSupported="نوع OsfControl غير معتمد.";Strings.OfficeOM.L_DataNotMatchSelection="كائن البيانات الذي تم توفيره غير متوافق مع شكل التحديد الحالي أو أبعاده.";Strings.OfficeOM.L_InternalError="خطأ داخلي";Strings.OfficeOM.L_NotSupported="الدالة {0} غير معتمدة.";Strings.OfficeOM.L_CustomXmlNodeNotFound="لم يتم العثور على العقدة المحددة.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="نوع الاندماج المحدد غير متوافق مع هذا النوع من الربط.";Strings.OfficeOM.L_TooManyArguments="العديد من الوسيطات";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="العملية غير معتمدة على هذا النوع من الربط.";Strings.OfficeOM.L_InValidOptionalArgument="وسيطة اختيارية غير صالحة";Strings.OfficeOM.L_FileTypeNotSupported="نوع الملف المحدد غير معتمد.";Strings.OfficeOM.L_CallbackNotAFunction="يجب أن يكون رد الاستدعاء من دالة النوع، وكان من النوع {0}." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ar-sa/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ar-sa/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/bg-bg/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ћнэ гёqцєsт эж©ёєds тћз 1 MB sїzє lїмїт. Plэдsё мбdїfу чфця EWS гєqцэsт.ЍѝцзджфЍѝцз_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Дл фffsєт fбг тћїs тїмз sтдмp ©фцldй'т вэ fфцлd.Ѝѝцзджф_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Єlёvдтєd pзґмїssїюл їs гзqџїяэd тф ©дll тћз мзтћфd: '{0}'.ЍѝцзджфЍѝ_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ёlєvдтзd pєгмїssїби їs гзqµїяэd тю д©©ёss pґютє©тєd мзмБзґs бf тћэ JдvдS©гїpт API fюя Юffї©э.ЍѝцзджфЍѝцзджф_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ћћє эиd dдтё ф©©цяs ьёfюяз тћз sтдґт dдтз.Ѝѝцздж_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ћћз їпpџт dюёsл'т ґёsфlvэ тф д vдlїd dдтз.Ѝѝцздж_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Їитєґлдl pяютб©фl эгяюя: '{0}'.Ѝѝцзд_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/bg-bg/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ћнэ гёqцєsт эж©ёєds тћз 1 MB sїzє lїмїт. Plэдsё мбdїfу чфця EWS гєqцэsт.ЍѝцзджфЍѝцз_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Дл фffsєт fбг тћїs тїмз sтдмp ©фцldй'т вэ fфцлd.Ѝѝцзджф_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Єlёvдтєd pзґмїssїюл їs гзqџїяэd тф ©дll тћз мзтћфd: '{0}'.ЍѝцзджфЍѝ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ёlєvдтзd pєгмїssїби їs гзqµїяэd тю д©©ёss pґютє©тєd мзмБзґs бf тћэ JдvдS©гїpт API fюя Юffї©э.ЍѝцзджфЍѝцзджф_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ћћє эиd dдтё ф©©цяs ьёfюяз тћз sтдґт dдтз.Ѝѝцздж_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ћћз їпpџт dюёsл'т ґёsфlvэ тф д vдlїd dдтз.Ѝѝцздж_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Їитєґлдl pяютб©фl эгяюя: '{0}'.Ѝѝцзд_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/cs-cz/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.ů§čřž_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Ăň óffšęť fôř ťhíš ťímé śţámp ©óűłđń'ť bé fôµňđ.ů§č_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.ů§čř_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăçčęşš přóţęćţëď měmběŕš ôf ţhě JävăŚčŕípť API fôř Ôffîčě.ů§čřžýů_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ţhě ëňđ đąţę őççµřš bëfőŕé ťhé šţáŕţ ďáťë.ů§č_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.ů§č_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.ů§_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/cs-cz/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.ů§čřž_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Ăň óffšęť fôř ťhíš ťímé śţámp ©óűłđń'ť bé fôµňđ.ů§č_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.ů§čř_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăçčęşš přóţęćţëď měmběŕš ôf ţhě JävăŚčŕípť API fôř Ôffîčě.ů§čřžýů_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ţhě ëňđ đąţę őççµřš bëfőŕé ťhé šţáŕţ ďáťë.ů§č_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.ů§č_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.ů§_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/da-dk/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/da-dk/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/de-de/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/de-de/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/el-gr/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Thε rεqύεsτ εxςέεds τhέ 1 MB sιzε lιmϊτ. Plεαsε mσdϊfy yόύr EWS rέqύεsτ.θλρωβθλρωβθλρωβθλρωβθλ_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Λη όffsετ fφr τhιs τίmέ sταmp ςόϋldη'τ bε fσύηd.θλρωβθλρωβθλρω_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Σlενατεd pεrmιssϊσή ιs rεqϋϊrέd τό ςάll τhε mετhφd: '{0}'.θλρωβθλρωβθλρωβθλ_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Σlενατεd pεrmιssϊσή ιs rεqϋϊrέd τό αςςεss prότεςτεd mεmbέrs θf τhέ JαναSςrιpτ API fόr Θffϊςέ.θλρωβθλρωβθλρωβθλρωβθλρωβθλρ_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Thε εηd dατε όςςϋrs bέfσrε τhε sταrτ dατε.θλρωβθλρωβθλρ_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Thε ϊηpύτ dφεsή'τ rέsσlνε τό ά ναlϊd dάτε.θλρωβθλρωβθλρ_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Ϊητεrήαl prότόςσl έrrφr: '{0}'.θλρωβθλρω_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/el-gr/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Thε rεqύεsτ εxςέεds τhέ 1 MB sιzε lιmϊτ. Plεαsε mσdϊfy yόύr EWS rέqύεsτ.θλρωβθλρωβθλρωβθλρωβθλ_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Λη όffsετ fφr τhιs τίmέ sταmp ςόϋldη'τ bε fσύηd.θλρωβθλρωβθλρω_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Σlενατεd pεrmιssϊσή ιs rεqϋϊrέd τό ςάll τhε mετhφd: '{0}'.θλρωβθλρωβθλρωβθλ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Σlενατεd pεrmιssϊσή ιs rεqϋϊrέd τό αςςεss prότεςτεd mεmbέrs θf τhέ JαναSςrιpτ API fόr Θffϊςέ.θλρωβθλρωβθλρωβθλρωβθλρωβθλρ_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Thε εηd dατε όςςϋrs bέfσrε τhε sταrτ dατε.θλρωβθλρωβθλρ_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Thε ϊηpύτ dφεsή'τ rέsσlνε τό ά ναlϊd dάτε.θλρωβθλρωβθλρ_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Ϊητεrήαl prότόςσl έrrφr: '{0}'.θλρωβθλρω_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/en-us/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace('_u'); 2 | _u.ExtensibilityStrings=function _u_ExtensibilityStrings() { 3 | } 4 | _u.ExtensibilityStrings.registerClass('_u.ExtensibilityStrings'); 5 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text='The request exceeds the 1 MB size limit. Please modify your EWS request.'; 6 | _u.ExtensibilityStrings.l_OffsetNotfound_Text='An offset for this time stamp couldn\'t be found.'; 7 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text='Elevated permission is required to call the method: \'{0}\'.'; 8 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text='Elevated permission is required to access protected members of the JavaScript API for Office.'; 9 | _u.ExtensibilityStrings.l_InvalidEventDates_Text='The end date occurs before the start date.'; 10 | _u.ExtensibilityStrings.l_InvalidDate_Text='The input doesn\'t resolve to a valid date.'; 11 | _u.ExtensibilityStrings.l_InternalProtocolError_Text='Internal protocol error: \'{0}\'.'; 12 | 13 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/en-us/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/es-es/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/es-es/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/et-ee/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="Määratud sidumistüüp ei ühildu esitatud nimelise üksusega.";Strings.OfficeOM.L_EventHandlerNotExist="Määratud sündmusetüüpi ei toetata selles objektis.";Strings.OfficeOM.L_UnknownBindingType="Sidumistüüpi ei toetata.";Strings.OfficeOM.L_InvalidNode="Sobimatu sõlm";Strings.OfficeOM.L_NotImplemented="Funktsioon {0} pole juurutatud.";Strings.OfficeOM.L_NoCapability="Teil pole selle toimingu jaoks piisavaid lubasid.";Strings.OfficeOM.L_SettingsCannotSave="Sätteid ei saanud salvestada.";Strings.OfficeOM.L_InvalidBinding="Sobimatu sidumine";Strings.OfficeOM.L_BindingCreationError="Sidumise loomise tõrge";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Praegune valik ei ühildu määratud kooshoidmistüübiga.";Strings.OfficeOM.L_InvalidBindingError="Sobimatu sidumise tõrge";Strings.OfficeOM.L_InvalidGetStartRowColumn="Määratud väärtus startRow või startColumn ei sobi.";Strings.OfficeOM.L_CannotWriteToSelection="Praegusesse valikusse ei saa kirjutada.";Strings.OfficeOM.L_IndexOutOfRange="Indeks on väljaspool vahemikku.";Strings.OfficeOM.L_SettingsStaleError="Sätete aegumise tõrge";Strings.OfficeOM.L_ReadSettingsError="Sätete lugemise tõrge";Strings.OfficeOM.L_CoercionTypeNotSupported="Määratud kooshoidmistüüpi ei toetata.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Rakendust {0} pole olemas. Microsoft.Office.WebExtension.initialize(reason) pole kutsutud.";Strings.OfficeOM.L_OverwriteWorksheetData="Määramistoiming nurjus, kuna esitatud andmeobjekt kirjutab andmed üle või neid.";Strings.OfficeOM.L_UnsupportedEnumeration="Toetuseta nummerdamine";Strings.OfficeOM.L_InvalidParameters="Funktsiooni {0} parameetrid pole sobivad.";Strings.OfficeOM.L_DataNotMatchCoercionType="Määratud andmeobjekti tüüp ei ühildu praeguse kooshoidmistüübiga.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Praegune hostrakendus ei toeta nummerdamist.";Strings.OfficeOM.L_InvalidCoercion="Sobimatu kooshoidmise tüüp";Strings.OfficeOM.L_NotSupportedEventType="Määratud sündmuse tüüp {0} pole toetatud.";Strings.OfficeOM.L_UnsupportedDataObject="Esitatud andmeobjektitüüpi ei toetata.";Strings.OfficeOM.L_GetDataIsTooLarge="Nõutud andmekomplekt on liiga mahukas.";Strings.OfficeOM.L_AppNameNotExist="{0} AppName'i pole olemas.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Palun valige.";Strings.OfficeOM.L_MultipleNamedItemFound="Leiti mitu sama nimega objekti.";Strings.OfficeOM.L_DataNotMatchBindingType="Määratud andmeobjekt ei ühildu sidumistüübiga.";Strings.OfficeOM.L_NotSupportedBindingType="Määratud sidumistüüp {0} pole toetatud.";Strings.OfficeOM.L_InitializeNotReady="Office.js pole veel täielikult laaditud. Palun proovige hiljem uuesti või veenduge, et lähtestamiskood on lisatud funktsiooni Office.initialize.";Strings.OfficeOM.L_ShuttingDown="Toiming nurjus, kuna serveris olevad andmed pole ajakohased.";Strings.OfficeOM.L_OperationNotSupported="Toimingut ei toetata.";Strings.OfficeOM.L_DocumentReadOnly="Nõutud toiming pole praeguses dokumendirežiimis lubatud.";Strings.OfficeOM.L_NamedItemNotFound="Nimega üksust pole olemas.";Strings.OfficeOM.L_InvalidApiCallInContext="API kutse pole praeguses kontekstis sobiv.";Strings.OfficeOM.L_SetDataIsTooLarge="Määratud andmeobjekt on liiga suur.";Strings.OfficeOM.L_DataWriteError="Andmete kirjutamise tõrge";Strings.OfficeOM.L_InvalidBindingOperation="Sobimatu sidumise toiming";Strings.OfficeOM.L_FunctionCallFailed="Funktsiooni {0} ei saanud kutsuda; veakood: {1}.";Strings.OfficeOM.L_DataNotMatchBindingSize="Esitatud andmeobjekt ei vasta praeguse valiku suurusele.";Strings.OfficeOM.L_SaveSettingsError="Sätete salvestamise tõrge";Strings.OfficeOM.L_InvalidSetStartRowColumn="Määratud väärtus startRow või startColumn ei sobi.";Strings.OfficeOM.L_InvalidFormat="Sobimatu vormingu tõrge";Strings.OfficeOM.L_BindingNotExist="Määratud sidumist pole olemas.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Sündmuseohjurit ei saanud lisada.";Strings.OfficeOM.L_SettingNameNotExist="Määratud sätte nime pole olemas.";Strings.OfficeOM.L_InvalidAPICall="Sobimatu API kutse";Strings.OfficeOM.L_EventRegistrationError="Sündmuse registreerimise tõrge";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Koordinaatparameetreid ei saa kasutada kooshoidmistüübiga Tabel, kui tabel sisaldab liidetud lahtreid.";Strings.OfficeOM.L_RedundantCallbackSpecification="Tagasikutse ei saa olla korraga määratud nii argumendiloendis kui valikulises objektis.";Strings.OfficeOM.L_CustomXmlError="Kohandatud XML-i tõrge.";Strings.OfficeOM.L_SettingsAreStale="Sätteid ei saanud salvestada, kuna need pole ajakohased.";Strings.OfficeOM.L_TooManyOptionalFunction="parameetriloendis on mitu valikulist funktsiooni";Strings.OfficeOM.L_MissingRequiredArguments="mõned nõutavad argumendid on puudu";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Koordinaatparameetreid ei saa kasutada kooshoidmistüübiga Tabel, kui tabel sisaldab liidetud lahtreid.";Strings.OfficeOM.L_HostError="Hosti tõrge";Strings.OfficeOM.L_InvalidSelectionForBindingType="Sidumist ei saa praeguse valikuga ja määratud sidumistüübiga luua.";Strings.OfficeOM.L_TooManyOptionalObjects="parameetriloendis on mitu valikulist objekti";Strings.OfficeOM.L_EventHandlerRemovalFailed="Sündmuseohjurit ei saanud eemaldada.";Strings.OfficeOM.L_BindingToMultipleSelection="Mittekülgnevaid valikuid ei toetata.";Strings.OfficeOM.L_DataReadError="Andmete lugemise tõrge";Strings.OfficeOM.L_InternalErrorDescription="Ilmnes sisemine tõrge.";Strings.OfficeOM.L_InvalidDataFormat="Määratud andmeobjekti vorming ei sobi.";Strings.OfficeOM.L_DataStale="Andmed pole ajakohased";Strings.OfficeOM.L_GetSelectionNotSupported="Praegune valik pole toetatud.";Strings.OfficeOM.L_PermissionDenied="Õigusest keelduti";Strings.OfficeOM.L_InvalidDataObject="Sobimatu andmeobjekt";Strings.OfficeOM.L_SelectionCannotBound="Praeguse valikuga ei saa siduda.";Strings.OfficeOM.L_BadSelectorString="Valijale edasi antud string on valesti vormindatud või toetuseta.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Määratud väärtused rowCount ja columnCount pole sobivad.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Tüüp OsfControl pole toetatud.";Strings.OfficeOM.L_DataNotMatchSelection="Esitatud andmeobjekt ei ühildu praeguse valiku kuju või mõõtmetega.";Strings.OfficeOM.L_InternalError="Sisemine tõrge";Strings.OfficeOM.L_NotSupported="Funktsiooni {0} ei toetata.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Määratud sõlme ei leitud.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Määratud kooshoidmistüüp ei ühildu selle sidumistüübiga.";Strings.OfficeOM.L_TooManyArguments="liiga palju argumente";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Toiming pole selle sidumistüübi korral toetatud.";Strings.OfficeOM.L_InValidOptionalArgument="sobimatu valikuline argument";Strings.OfficeOM.L_FileTypeNotSupported="Määratud failitüüpi ei toetata.";Strings.OfficeOM.L_CallbackNotAFunction="Tagasikutse peab olema funktsioon-tüüpi, kuid on tüüpi {0}." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/et-ee/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Thē ŗęqųéšt ė×¢éėdś thė 1 MB §įżé ļįmįt. Płęæ§é mōdįfy yōüŗ EWS ŗéqµéšt.šä_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Äņ ōffšét f¤ŗ thį§ tīmė štąmp č¤ųłdņ't ßė fóüńd.š_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ēłévåtėd pēŗmįś§ī¤ņ įś ŗēqµįŗēd tõ ćāļł thē mēth°d: '{0}'.šä_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ęļėvåtēd pėŗmįś§įōņ īś ŗėqµįŗéd tø ą¢ćēšś pŗötēćtėd mēmßéŗś øf thė JævæŚćŗīpt API f¤ŗ Öffįćé.šäž_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Thē ęņd dætē õ¢čųŗś ßęföŗė thė śtąŗt dåté.š_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Thé įńpüt d°ēšņ't ŗę§õłvē t¤ æ vąļįd däté.š_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Įńtéŗńæł pŗ°tó¢õł ęŗŗöŗ: '{0}'.š_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/et-ee/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Thē ŗęqųéšt ė×¢éėdś thė 1 MB §įżé ļįmįt. Płęæ§é mōdįfy yōüŗ EWS ŗéqµéšt.šä_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Äņ ōffšét f¤ŗ thį§ tīmė štąmp č¤ųłdņ't ßė fóüńd.š_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ēłévåtėd pēŗmįś§ī¤ņ įś ŗēqµįŗēd tõ ćāļł thē mēth°d: '{0}'.šä_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ęļėvåtēd pėŗmįś§įōņ īś ŗėqµįŗéd tø ą¢ćēšś pŗötēćtėd mēmßéŗś øf thė JævæŚćŗīpt API f¤ŗ Öffįćé.šäž_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Thē ęņd dætē õ¢čųŗś ßęföŗė thė śtąŗt dåté.š_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Thé įńpüt d°ēšņ't ŗę§õłvē t¤ æ vąļįd däté.š_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Įńtéŗńæł pŗ°tó¢õł ęŗŗöŗ: '{0}'.š_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/fi-fi/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/fi-fi/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/fr-fr/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/fr-fr/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/he-il/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="סוג האיגוד שצוין אינו תואם לפריט בעל השם שסופק.";Strings.OfficeOM.L_EventHandlerNotExist="סוג האירוע שצוין אינו נתמך באובייקט זה.";Strings.OfficeOM.L_UnknownBindingType="סוג האיגוד אינו נתמך.";Strings.OfficeOM.L_InvalidNode="צומת לא חוקי";Strings.OfficeOM.L_NotImplemented="הפונקציה {0} אינה מיושמת.";Strings.OfficeOM.L_NoCapability="אין לך הרשאות מספיקות לביצוע פעולה זו.";Strings.OfficeOM.L_SettingsCannotSave="לא ניתן היה לשמור את ההגדרות.";Strings.OfficeOM.L_InvalidBinding="איגוד לא חוקי";Strings.OfficeOM.L_BindingCreationError="שגיאה ביצירת איגוד";Strings.OfficeOM.L_SelectionNotSupportCoercionType="הבחירה הנוכחית אינה תואמת לסוג הכפייה שצוין.";Strings.OfficeOM.L_InvalidBindingError="שגיאת איגוד לא חוקי";Strings.OfficeOM.L_InvalidGetStartRowColumn="ערכי startRow או startColumn שצוינו אינם חוקיים.";Strings.OfficeOM.L_CannotWriteToSelection="אין אפשרות לכתוב לבחירה הנוכחית.";Strings.OfficeOM.L_IndexOutOfRange="האינדקס מחוץ לטווח.";Strings.OfficeOM.L_SettingsStaleError="שגיאת הגדרות ישנות";Strings.OfficeOM.L_ReadSettingsError="שגיאה בקריאת הגדרות";Strings.OfficeOM.L_CoercionTypeNotSupported="סוג הכפייה שצוין אינו נתמך.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="היישום {0} לא קיים. לא בוצעה קריאה עבור Microsoft.Office.WebExtension.initialize(reason)‎.";Strings.OfficeOM.L_OverwriteWorksheetData="פעולת ההגדרה נכשלה משום שאובייקט הנתונים שסופק יחליף או יעביר נתונים.";Strings.OfficeOM.L_UnsupportedEnumeration="ספירה לא נתמכת";Strings.OfficeOM.L_InvalidParameters="הפונקציה {0} כוללת פרמטרים לא חוקיים.";Strings.OfficeOM.L_DataNotMatchCoercionType="סוג אובייקט הנתונים שצוין לא תואם לבחירה הנוכחית.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="הספירה אינה נתמכת ביישום המארח הנוכחי.";Strings.OfficeOM.L_InvalidCoercion="סוג כפייה לא חוקי";Strings.OfficeOM.L_NotSupportedEventType="סוג האירוע שצוין {0} אינו נתמך.";Strings.OfficeOM.L_UnsupportedDataObject="סוג אובייקט הנתונים שסופק אינו נתמך.";Strings.OfficeOM.L_GetDataIsTooLarge="ערכת הנתונים המבוקשת גדולה מדי.";Strings.OfficeOM.L_AppNameNotExist="לא קיים AppName עבור {0}.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="בצע בחירה.";Strings.OfficeOM.L_MultipleNamedItemFound="נמצאו אובייקטים מרובים בעלי שם זהה.";Strings.OfficeOM.L_DataNotMatchBindingType="אובייקט הנתונים שצוין אינו תואם לסוג האיגוד.";Strings.OfficeOM.L_NotSupportedBindingType="סוג האיגוד שצוין {0} אינו נתמך.";Strings.OfficeOM.L_InitializeNotReady="Office.js עדיין לא נטען במלואו. נסה שוב מאוחר יותר או הקפד להוסיף את קוד האתחול שלך בפונקציה Office.initialize.";Strings.OfficeOM.L_ShuttingDown="הפעולה נכשלה משום שהנתונים בשרת לא עדכניים.";Strings.OfficeOM.L_OperationNotSupported="הפעולה אינה נתמכת.";Strings.OfficeOM.L_DocumentReadOnly="הפעולה המבוקשת אינה מותרת במצב המסמך הנוכחי.";Strings.OfficeOM.L_NamedItemNotFound="הפריט בעל השם לא קיים.";Strings.OfficeOM.L_InvalidApiCallInContext="קריאה לא חוקית ל- API בהקשר הנוכחי.";Strings.OfficeOM.L_SetDataIsTooLarge="אובייקט הנתונים שצוין גדול מדי.";Strings.OfficeOM.L_DataWriteError="שגיאה בכתיבת נתונים";Strings.OfficeOM.L_InvalidBindingOperation="פעולת איגוד לא חוקית";Strings.OfficeOM.L_FunctionCallFailed="הקריאה לפונקציה {0} נכשלה, קוד שגיאה: {1}.";Strings.OfficeOM.L_DataNotMatchBindingSize="אובייקט הנתונים שסופק לא תואם לגודל הבחירה הנוכחית.";Strings.OfficeOM.L_SaveSettingsError="שגיאה בשמירת הגדרות";Strings.OfficeOM.L_InvalidSetStartRowColumn="ערכי startRow או startColumn שצוינו אינם חוקיים.";Strings.OfficeOM.L_InvalidFormat="שגיאת תבנית לא חוקית";Strings.OfficeOM.L_BindingNotExist="האיגוד שצוין לא קיים.";Strings.OfficeOM.L_EventHandlerAdditionFailed="הוספת המטפל באירועים נכשלה.";Strings.OfficeOM.L_SettingNameNotExist="שם ההגדרה שצוין לא קיים.";Strings.OfficeOM.L_InvalidAPICall="קריאה לא חוקית ל- API";Strings.OfficeOM.L_EventRegistrationError="שגיאת רישום אירוע";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="לא ניתן להשתמש בפרמטרי קואורדינטות עם סוג הכפייה 'טבלה' כאשר הטבלה מכילה תאים ממוזגים.";Strings.OfficeOM.L_RedundantCallbackSpecification="אין אפשרות לציין התקשרות חזרה גם ברשימת הארגומנטים וגם באובייקט האופציונלי.";Strings.OfficeOM.L_CustomXmlError="שגיאת XML מותאם אישית.";Strings.OfficeOM.L_SettingsAreStale="לא ניתן היה לשמור את ההגדרות משום שהן לא עדכניות.";Strings.OfficeOM.L_TooManyOptionalFunction="פונקציות אופציונליות מרובות ברשימת הפרמטרים";Strings.OfficeOM.L_MissingRequiredArguments="כמה ארגומנטים נדרשים חסרים";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="לא ניתן להשתמש בפרמטרי קואורדינטות עם סוג כפייה 'טבלה' כאשר הטבלה מכילה תאים ממוזגים.";Strings.OfficeOM.L_HostError="שגיאת מארח";Strings.OfficeOM.L_InvalidSelectionForBindingType="אין אפשרות ליצור איגוד עם הבחירה הנוכחית וסוג האיגוד שצוין.";Strings.OfficeOM.L_TooManyOptionalObjects="אובייקטים אופציונליים מרובים ברשימת הפרמטרים";Strings.OfficeOM.L_EventHandlerRemovalFailed="הסרת המטפל באירועים נכשלה.";Strings.OfficeOM.L_BindingToMultipleSelection="אין תמיכה בבחירות לא רציפות.";Strings.OfficeOM.L_DataReadError="שגיאה בקריאת נתונים";Strings.OfficeOM.L_InternalErrorDescription="אירעה שגיאה פנימית.";Strings.OfficeOM.L_InvalidDataFormat="התבנית של אובייקט הנתונים שצוין אינה חוקית.";Strings.OfficeOM.L_DataStale="הנתונים אינם עדכניים";Strings.OfficeOM.L_GetSelectionNotSupported="הבחירה הנוכחית אינה נתמכת.";Strings.OfficeOM.L_PermissionDenied="ההרשאה נדחתה";Strings.OfficeOM.L_InvalidDataObject="אובייקט נתונים לא חוקי";Strings.OfficeOM.L_SelectionCannotBound="אין אפשרות לאגד לבחירה הנוכחית.";Strings.OfficeOM.L_BadSelectorString="המחרוזת שהועברה לתוך הבורר מעוצבת באופן לא תקין או שאינה נתמכת.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="ערכי rowCount או columnCount שצוינו אינם חוקיים.";Strings.OfficeOM.L_OsfControlTypeNotSupported="אין תמיכה בסוג OsfControl.";Strings.OfficeOM.L_DataNotMatchSelection="אובייקט הנתונים שסופק לא תואם לצורה או לממדים של הבחירה הנוכחית.";Strings.OfficeOM.L_InternalError="שגיאה פנימית";Strings.OfficeOM.L_NotSupported="הפונקציה {0} אינה נתמכת.";Strings.OfficeOM.L_CustomXmlNodeNotFound="הצומת שצוין לא נמצא.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="סוג הכפייה שצוין לא תואם לסוג איגוד זה.";Strings.OfficeOM.L_TooManyArguments="ארגומנטים רבים מדי";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="הפעולה אינה נתמכת באיגוד מסוג זה.";Strings.OfficeOM.L_InValidOptionalArgument="ארגומנט אופציונלי לא חוקי";Strings.OfficeOM.L_FileTypeNotSupported="סוג הקובץ שצוין אינו נתמך.";Strings.OfficeOM.L_CallbackNotAFunction="סוג ההתקשרות חזרה חייב להיות פונקציה, הסוג היה {0}." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/he-il/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/he-il/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/hi-in/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/hi-in/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/hr-hr/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ťhě řëqúëśţ ěxćęęďš ťhé 1 MB śîźę ĺîmîţ. Pĺëąśë móđífý ýőüŕ EWS ŕęqµëśţ.čžšđčč_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Äň öffšéť föŕ ťhíş ţîmę śţąmp čőúĺďň'ţ bë főµňď.čžšđ_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő čäľł ţhę męťhőď: '{0}'.čžšđč_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő ąčçéşš pŕöťěćţęď mëmbëŕş öf ťhę JăváŞçřîpţ API fóř Öffîčë.čžšđččžš_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ťhě ěňđ ďąţě ôćçüŕś béföřë ţhě śťářť ďäťé.čžšđ_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ťhě îňpúť ďôěşń'ţ řęśóĺvě ťô ą vąĺíď ďąťë.čžšđ_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Îňťëŕňąľ přôţôçôĺ éřřőŕ: '{0}'.čžš_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/hr-hr/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ťhě řëqúëśţ ěxćęęďš ťhé 1 MB śîźę ĺîmîţ. Pĺëąśë móđífý ýőüŕ EWS ŕęqµëśţ.čžšđčč_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Äň öffšéť föŕ ťhíş ţîmę śţąmp čőúĺďň'ţ bë főµňď.čžšđ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő čäľł ţhę męťhőď: '{0}'.čžšđč_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő ąčçéşš pŕöťěćţęď mëmbëŕş öf ťhę JăváŞçřîpţ API fóř Öffîčë.čžšđččžš_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ťhě ěňđ ďąţě ôćçüŕś béföřë ţhě śťářť ďäťé.čžšđ_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ťhě îňpúť ďôěşń'ţ řęśóĺvě ťô ą vąĺíď ďąťë.čžšđ_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Îňťëŕňąľ přôţôçôĺ éřřőŕ: '{0}'.čžš_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/hu-hu/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.öíőüáűöíő_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Ăň óffšęť fôř ťhíš ťímé śţámp čóűłđń'ť bé fôµňđ.öíőüáű_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.öíőüáűö_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăćçęşš přóţęćţëď měmběŕš ôf ţhě JävăŚçŕípť API fôř Ôffîçě.öíőüáűöíőüá_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ţhě ëňđ đąţę őćçµřš bëfőŕé ťhé šţáŕţ ďáťë.öíőüá_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.öíőüá_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.öíőü_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/hu-hu/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.öíőüáűöíő_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Ăň óffšęť fôř ťhíš ťímé śţámp čóűłđń'ť bé fôµňđ.öíőüáű_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.öíőüáűö_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăćçęşš přóţęćţëď měmběŕš ôf ţhě JävăŚçŕípť API fôř Ôffîçě.öíőüáűöíőüá_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ţhě ëňđ đąţę őćçµřš bëfőŕé ťhé šţáŕţ ďáťë.öíőüá_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.öíőüá_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.öíőü_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/id-id/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Thè réqµést éx¢êéðs thé 1 MB sîzé lîmît. Plëªsé mõðïfý ÿøµr EWS réqùëst.ubpu_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Ãñ òffsêt fôr thïs tímê ståmp çõülðñ't þé fóµñð.ub_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Êlévâtèð pèrmìssïóñ ís rëqüîrèð tò ¢æll thë mèthôð: '{0}'.ubp_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Élêvätèð pêrmíssïóñ îs rèqµírèð tõ 梢éss pröté¢téð mêmþêrs ôf thè Jävã§çrípt API fòr Óffî¢ë.ubpub_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Thè ëñð ðátë óç¢úrs þëfõré thê stärt ðàtë.ub_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Thé ïñpùt ðòésñ't résølvë tó â vàlïð ðåtë.ub_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Ïñtérñàl prøtò¢õl érrör: '{0}'.ub_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/id-id/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Thè réqµést éx¢êéðs thé 1 MB sîzé lîmît. Plëªsé mõðïfý ÿøµr EWS réqùëst.ubpu_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Ãñ òffsêt fôr thïs tímê ståmp çõülðñ't þé fóµñð.ub_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Êlévâtèð pèrmìssïóñ ís rëqüîrèð tò ¢æll thë mèthôð: '{0}'.ubp_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Élêvätèð pêrmíssïóñ îs rèqµírèð tõ 梢éss pröté¢téð mêmþêrs ôf thè Jävã§çrípt API fòr Óffî¢ë.ubpub_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Thè ëñð ðátë óç¢úrs þëfõré thê stärt ðàtë.ub_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Thé ïñpùt ðòésñ't résølvë tó â vàlïð ðåtë.ub_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Ïñtérñàl prøtò¢õl érrör: '{0}'.ub_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/it-it/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/it-it/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ja-jp/office_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("Strings"); 3 | Strings.OfficeOM = function() 4 | { 5 | }; 6 | Strings.OfficeOM.registerClass("Strings.OfficeOM"); 7 | Strings.OfficeOM.L_InvalidNamedItemForBindingType = "指定したバインド タイプは、指定した名前付きアイテムと互換性がありません。"; 8 | Strings.OfficeOM.L_EventHandlerNotExist = "指定したイベント タイプは、このオブジェクトではサポートされていません。"; 9 | Strings.OfficeOM.L_UnknownBindingType = "このバインド タイプはサポートされていません。"; 10 | Strings.OfficeOM.L_InvalidNode = "無効なノード"; 11 | Strings.OfficeOM.L_NotImplemented = "関数 {0} は実装されていません。"; 12 | Strings.OfficeOM.L_NoCapability = "この操作を実行するための十分な権限がありません。"; 13 | Strings.OfficeOM.L_SettingsCannotSave = "設定を保存できませんでした。"; 14 | Strings.OfficeOM.L_InvalidBinding = "無効なバインド"; 15 | Strings.OfficeOM.L_BindingCreationError = "バインドの作成エラーが発生しました"; 16 | Strings.OfficeOM.L_SelectionNotSupportCoercionType = "現在の選択内容は、指定した強制型変換タイプと互換性がありません。"; 17 | Strings.OfficeOM.L_InvalidBindingError = "無効なバインド エラー"; 18 | Strings.OfficeOM.L_InvalidGetStartRowColumn = "指定した startRow または startColumn の値は無効です。"; 19 | Strings.OfficeOM.L_CannotWriteToSelection = "現在の選択内容に書き込むことができません。"; 20 | Strings.OfficeOM.L_IndexOutOfRange = "インデックスが範囲外です。"; 21 | Strings.OfficeOM.L_SettingsStaleError = "古い設定のためエラーが発生しました"; 22 | Strings.OfficeOM.L_ReadSettingsError = "設定の読み取りエラーが発生しました"; 23 | Strings.OfficeOM.L_CoercionTypeNotSupported = "指定した強制型変換タイプはサポートされていません。"; 24 | Strings.OfficeOM.L_AppNotExistInitializeNotCalled = "アプリケーション {0} が存在しません。Microsoft.Office.WebExtension.initialize(app, reason) が呼び出されていません。"; 25 | Strings.OfficeOM.L_OverwriteWorksheetData = "指定したデータ オブジェクトがデータを上書きまたは移動するため、設定操作は失敗しました。"; 26 | Strings.OfficeOM.L_UnsupportedEnumeration = "サポートされていない列挙"; 27 | Strings.OfficeOM.L_InvalidParameters = "関数 {0} に無効なパラメーターが含まれています。"; 28 | Strings.OfficeOM.L_DataNotMatchCoercionType = "指定したデータ オブジェクトは、現在の選択内容と互換性がありません。"; 29 | Strings.OfficeOM.L_UnsupportedEnumerationMessage = "現在のホスト アプリケーションでは、列挙はサポートされていません。"; 30 | Strings.OfficeOM.L_InvalidCoercion = "強制変換タイプが無効です"; 31 | Strings.OfficeOM.L_NotSupportedEventType = "指定したイベント タイプ {0} はサポートされていません。"; 32 | Strings.OfficeOM.L_UnsupportedDataObject = "指定したデータ オブジェクト型はサポートされていません。"; 33 | Strings.OfficeOM.L_GetDataIsTooLarge = "要求したデータ セットはサイズが大きすぎます。"; 34 | Strings.OfficeOM.L_AppNameNotExist = "{0} のアプリケーション名が存在しません。"; 35 | Strings.OfficeOM.L_AddBindingFromPromptDefaultText = "選択範囲を指定してください。"; 36 | Strings.OfficeOM.L_MultipleNamedItemFound = "同じ名前の複数のオブジェクトが見つかりました。"; 37 | Strings.OfficeOM.L_DataNotMatchBindingType = "指定したデータ オブジェクトは、バインド タイプと互換性がありません。"; 38 | Strings.OfficeOM.L_NotSupportedBindingType = "指定したバインド タイプ {0} はサポートされていません。"; 39 | Strings.OfficeOM.L_InitializeNotReady = "Office.js は完全に読み込まれていません。後でやり直すか、Office.initialize 機能への初期化コードの追加を確認してください。"; 40 | Strings.OfficeOM.L_ShuttingDown = "サーバー上のデータが最新ではないため、操作は失敗しました。"; 41 | Strings.OfficeOM.L_OperationNotSupported = "操作はサポートされていません。"; 42 | Strings.OfficeOM.L_DocumentReadOnly = "要求した操作は、現在のドキュメント モードでは許可されていません。"; 43 | Strings.OfficeOM.L_NamedItemNotFound = "名前付きアイテムが存在しません。"; 44 | Strings.OfficeOM.L_InvalidApiCallInContext = "現在のコンテキストに無効な API 呼び出しがあります。"; 45 | Strings.OfficeOM.L_SetDataIsTooLarge = "指定されたデータ オブジェクトが大きすぎます。"; 46 | Strings.OfficeOM.L_DataWriteError = "データの書き込みエラーが発生しました"; 47 | Strings.OfficeOM.L_InvalidBindingOperation = "無効なバインドの操作"; 48 | Strings.OfficeOM.L_FunctionCallFailed = "関数 {0} の呼び出しに失敗しました。エラー コード: {1}。"; 49 | Strings.OfficeOM.L_DataNotMatchBindingSize = "指定したデータ オブジェクトは、現在の選択内容のサイズに一致しません。"; 50 | Strings.OfficeOM.L_SaveSettingsError = "設定の保存エラーが発生しました"; 51 | Strings.OfficeOM.L_InvalidSetStartRowColumn = "指定した startRow または startColumn の値は無効です。"; 52 | Strings.OfficeOM.L_InvalidFormat = "無効な形式のためにエラーが発生しました"; 53 | Strings.OfficeOM.L_BindingNotExist = "指定したバインドが存在しません。"; 54 | Strings.OfficeOM.L_EventHandlerAdditionFailed = "イベント ハンドラーを追加できませんでした。"; 55 | Strings.OfficeOM.L_SettingNameNotExist = "指定した設定名が存在しません。"; 56 | Strings.OfficeOM.L_InvalidAPICall = "API 呼び出しが無効です"; 57 | Strings.OfficeOM.L_EventRegistrationError = "イベントの登録エラーが発生しました"; 58 | Strings.OfficeOM.L_NonUniformPartialSetNotSupported = "テーブルに結合されたセルが含まれている場合、強制型変換タイプのテーブルで座標パラメーターを使用することはできません。"; 59 | Strings.OfficeOM.L_RedundantCallbackSpecification = "コールバックを引数リストと省略可能オブジェクトの両方で指定することはできません。"; 60 | Strings.OfficeOM.L_CustomXmlError = "カスタム XML エラーが発生しました。"; 61 | Strings.OfficeOM.L_SettingsAreStale = "設定が最新ではないため、保存できませんでした。"; 62 | Strings.OfficeOM.L_TooManyOptionalFunction = "複数のオプションの機能がパラメーター リスト内にあります"; 63 | Strings.OfficeOM.L_MissingRequiredArguments = "いくつかの必須の引数が指定されていません"; 64 | Strings.OfficeOM.L_NonUniformPartialGetNotSupported = "結合されたセルがテーブルに含まれている場合、強制型変換タイプのテーブルで座標パラメーターを使用することはできません。"; 65 | Strings.OfficeOM.L_HostError = "ホスト エラーが発生しました"; 66 | Strings.OfficeOM.L_InvalidSelectionForBindingType = "現在の選択内容と指定したバインド タイプでは、バインドは作成できません。"; 67 | Strings.OfficeOM.L_TooManyOptionalObjects = "複数のオプションのオブジェクトがパラメーター リスト内にあります"; 68 | Strings.OfficeOM.L_EventHandlerRemovalFailed = "イベント ハンドラーを削除できませんでした。"; 69 | Strings.OfficeOM.L_BindingToMultipleSelection = "不連続の選択はサポートされていません。"; 70 | Strings.OfficeOM.L_DataReadError = "データの読み取りエラーが発生しました"; 71 | Strings.OfficeOM.L_InternalErrorDescription = "内部エラーが発生しました。"; 72 | Strings.OfficeOM.L_InvalidDataFormat = "指定したデータ オブジェクトの形式は無効です。"; 73 | Strings.OfficeOM.L_DataStale = "最新でないデータ"; 74 | Strings.OfficeOM.L_GetSelectionNotSupported = "現在の選択内容はサポートされていません。"; 75 | Strings.OfficeOM.L_PermissionDenied = "権限が拒否されました"; 76 | Strings.OfficeOM.L_InvalidDataObject = "データ オブジェクトが無効です"; 77 | Strings.OfficeOM.L_SelectionCannotBound = "現在の選択内容にバインドできません。"; 78 | Strings.OfficeOM.L_BadSelectorString = "セレクターに渡された文字列は、正しく書式設定されていないか、サポートされていません。"; 79 | Strings.OfficeOM.L_InvalidGetRowColumnCounts = "指定した rowCount または columnCount の値は無効です。"; 80 | Strings.OfficeOM.L_OsfControlTypeNotSupported = "OsfControl の型はサポートされていません。"; 81 | Strings.OfficeOM.L_DataNotMatchSelection = "指定したデータ オブジェクトは、現在の選択内容の形状または寸法と互換性がありません。"; 82 | Strings.OfficeOM.L_InternalError = "内部エラーが発生しました"; 83 | Strings.OfficeOM.L_NotSupported = "関数 {0} はサポートされていません。"; 84 | Strings.OfficeOM.L_CustomXmlNodeNotFound = "指定したノードは見つかりませんでした。"; 85 | Strings.OfficeOM.L_CoercionTypeNotMatchBinding = "指定した強制型変換タイプは、このバインド タイプと互換性がありません。"; 86 | Strings.OfficeOM.L_TooManyArguments = "引数が多すぎます"; 87 | Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType = "このバインド タイプではサポートされてない操作です。"; 88 | Strings.OfficeOM.L_InValidOptionalArgument = "オプションの引数が無効です"; 89 | Strings.OfficeOM.L_FileTypeNotSupported = "指定されたファイルの種類はサポートされていません。"; 90 | Strings.OfficeOM.L_CallbackNotAFunction = "コールバックの型は関数である必要がありますが、{0} でした。" 91 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ja-jp/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="指定したバインド タイプは、指定した名前付きアイテムと互換性がありません。";Strings.OfficeOM.L_EventHandlerNotExist="指定したイベント タイプは、このオブジェクトではサポートされていません。";Strings.OfficeOM.L_UnknownBindingType="このバインド タイプはサポートされていません。";Strings.OfficeOM.L_InvalidNode="無効なノード";Strings.OfficeOM.L_NotImplemented="関数 {0} は実装されていません。";Strings.OfficeOM.L_NoCapability="この操作を実行するための十分な権限がありません。";Strings.OfficeOM.L_SettingsCannotSave="設定を保存できませんでした。";Strings.OfficeOM.L_InvalidBinding="無効なバインド";Strings.OfficeOM.L_BindingCreationError="バインドの作成エラーが発生しました";Strings.OfficeOM.L_SelectionNotSupportCoercionType="現在の選択内容は、指定した強制型変換タイプと互換性がありません。";Strings.OfficeOM.L_InvalidBindingError="無効なバインド エラー";Strings.OfficeOM.L_InvalidGetStartRowColumn="指定した startRow または startColumn の値は無効です。";Strings.OfficeOM.L_CannotWriteToSelection="現在の選択内容に書き込むことができません。";Strings.OfficeOM.L_IndexOutOfRange="インデックスが範囲外です。";Strings.OfficeOM.L_SettingsStaleError="古い設定のためエラーが発生しました";Strings.OfficeOM.L_ReadSettingsError="設定の読み取りエラーが発生しました";Strings.OfficeOM.L_CoercionTypeNotSupported="指定した強制型変換タイプはサポートされていません。";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="アプリケーション {0} が存在しません。Microsoft.Office.WebExtension.initialize(app, reason) が呼び出されていません。";Strings.OfficeOM.L_OverwriteWorksheetData="指定したデータ オブジェクトがデータを上書きまたは移動するため、設定操作は失敗しました。";Strings.OfficeOM.L_UnsupportedEnumeration="サポートされていない列挙";Strings.OfficeOM.L_InvalidParameters="関数 {0} に無効なパラメーターが含まれています。";Strings.OfficeOM.L_DataNotMatchCoercionType="指定したデータ オブジェクトは、現在の選択内容と互換性がありません。";Strings.OfficeOM.L_UnsupportedEnumerationMessage="現在のホスト アプリケーションでは、列挙はサポートされていません。";Strings.OfficeOM.L_InvalidCoercion="強制変換タイプが無効です";Strings.OfficeOM.L_NotSupportedEventType="指定したイベント タイプ {0} はサポートされていません。";Strings.OfficeOM.L_UnsupportedDataObject="指定したデータ オブジェクト型はサポートされていません。";Strings.OfficeOM.L_GetDataIsTooLarge="要求したデータ セットはサイズが大きすぎます。";Strings.OfficeOM.L_AppNameNotExist="{0} のアプリケーション名が存在しません。";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="選択範囲を指定してください。";Strings.OfficeOM.L_MultipleNamedItemFound="同じ名前の複数のオブジェクトが見つかりました。";Strings.OfficeOM.L_DataNotMatchBindingType="指定したデータ オブジェクトは、バインド タイプと互換性がありません。";Strings.OfficeOM.L_NotSupportedBindingType="指定したバインド タイプ {0} はサポートされていません。";Strings.OfficeOM.L_InitializeNotReady="Office.js は完全に読み込まれていません。後でやり直すか、Office.initialize 機能への初期化コードの追加を確認してください。";Strings.OfficeOM.L_ShuttingDown="サーバー上のデータが最新ではないため、操作は失敗しました。";Strings.OfficeOM.L_OperationNotSupported="操作はサポートされていません。";Strings.OfficeOM.L_DocumentReadOnly="要求した操作は、現在のドキュメント モードでは許可されていません。";Strings.OfficeOM.L_NamedItemNotFound="名前付きアイテムが存在しません。";Strings.OfficeOM.L_InvalidApiCallInContext="現在のコンテキストに無効な API 呼び出しがあります。";Strings.OfficeOM.L_SetDataIsTooLarge="指定されたデータ オブジェクトが大きすぎます。";Strings.OfficeOM.L_DataWriteError="データの書き込みエラーが発生しました";Strings.OfficeOM.L_InvalidBindingOperation="無効なバインドの操作";Strings.OfficeOM.L_FunctionCallFailed="関数 {0} の呼び出しに失敗しました。エラー コード: {1}。";Strings.OfficeOM.L_DataNotMatchBindingSize="指定したデータ オブジェクトは、現在の選択内容のサイズに一致しません。";Strings.OfficeOM.L_SaveSettingsError="設定の保存エラーが発生しました";Strings.OfficeOM.L_InvalidSetStartRowColumn="指定した startRow または startColumn の値は無効です。";Strings.OfficeOM.L_InvalidFormat="無効な形式のためにエラーが発生しました";Strings.OfficeOM.L_BindingNotExist="指定したバインドが存在しません。";Strings.OfficeOM.L_EventHandlerAdditionFailed="イベント ハンドラーを追加できませんでした。";Strings.OfficeOM.L_SettingNameNotExist="指定した設定名が存在しません。";Strings.OfficeOM.L_InvalidAPICall="API 呼び出しが無効です";Strings.OfficeOM.L_EventRegistrationError="イベントの登録エラーが発生しました";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="テーブルに結合されたセルが含まれている場合、強制型変換タイプのテーブルで座標パラメーターを使用することはできません。";Strings.OfficeOM.L_RedundantCallbackSpecification="コールバックを引数リストと省略可能オブジェクトの両方で指定することはできません。";Strings.OfficeOM.L_CustomXmlError="カスタム XML エラーが発生しました。";Strings.OfficeOM.L_SettingsAreStale="設定が最新ではないため、保存できませんでした。";Strings.OfficeOM.L_TooManyOptionalFunction="複数のオプションの機能がパラメーター リスト内にあります";Strings.OfficeOM.L_MissingRequiredArguments="いくつかの必須の引数が指定されていません";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="結合されたセルがテーブルに含まれている場合、強制型変換タイプのテーブルで座標パラメーターを使用することはできません。";Strings.OfficeOM.L_HostError="ホスト エラーが発生しました";Strings.OfficeOM.L_InvalidSelectionForBindingType="現在の選択内容と指定したバインド タイプでは、バインドは作成できません。";Strings.OfficeOM.L_TooManyOptionalObjects="複数のオプションのオブジェクトがパラメーター リスト内にあります";Strings.OfficeOM.L_EventHandlerRemovalFailed="イベント ハンドラーを削除できませんでした。";Strings.OfficeOM.L_BindingToMultipleSelection="不連続の選択はサポートされていません。";Strings.OfficeOM.L_DataReadError="データの読み取りエラーが発生しました";Strings.OfficeOM.L_InternalErrorDescription="内部エラーが発生しました。";Strings.OfficeOM.L_InvalidDataFormat="指定したデータ オブジェクトの形式は無効です。";Strings.OfficeOM.L_DataStale="最新でないデータ";Strings.OfficeOM.L_GetSelectionNotSupported="現在の選択内容はサポートされていません。";Strings.OfficeOM.L_PermissionDenied="権限が拒否されました";Strings.OfficeOM.L_InvalidDataObject="データ オブジェクトが無効です";Strings.OfficeOM.L_SelectionCannotBound="現在の選択内容にバインドできません。";Strings.OfficeOM.L_BadSelectorString="セレクターに渡された文字列は、正しく書式設定されていないか、サポートされていません。";Strings.OfficeOM.L_InvalidGetRowColumnCounts="指定した rowCount または columnCount の値は無効です。";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl の型はサポートされていません。";Strings.OfficeOM.L_DataNotMatchSelection="指定したデータ オブジェクトは、現在の選択内容の形状または寸法と互換性がありません。";Strings.OfficeOM.L_InternalError="内部エラーが発生しました";Strings.OfficeOM.L_NotSupported="関数 {0} はサポートされていません。";Strings.OfficeOM.L_CustomXmlNodeNotFound="指定したノードは見つかりませんでした。";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="指定した強制型変換タイプは、このバインド タイプと互換性がありません。";Strings.OfficeOM.L_TooManyArguments="引数が多すぎます";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="このバインド タイプではサポートされてない操作です。";Strings.OfficeOM.L_InValidOptionalArgument="オプションの引数が無効です";Strings.OfficeOM.L_FileTypeNotSupported="指定されたファイルの種類はサポートされていません。";Strings.OfficeOM.L_CallbackNotAFunction="コールバックの型は関数である必要がありますが、{0} でした。" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ja-jp/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ja-jp/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/kk-kz/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ћнэ гёqцєsт эж©ёєds тћз 1 MB sїzє lїмїт. Plэдsё мбdїfу чфця EWS гєqцэsт.Ұщйфдн_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Дл фffsєт fбг тћїs тїмз sтдмp ©фцldй'т вэ fфцлd.Ұщйф_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Єlёvдтєd pзґмїssїюл їs гзqџїяэd тф ©дll тћз мзтћфd: '{0}'.Ұщйфд_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ёlєvдтзd pєгмїssїби їs гзqµїяэd тю д©©ёss pґютє©тєd мзмБзґs бf тћэ JдvдS©гїpт API fюя Юffї©э.ҰщйфднҰ_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ћћє эиd dдтё ф©©цяs ьёfюяз тћз sтдґт dдтз.Ұщй_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ћћз їпpџт dюёsл'т ґёsфlvэ тф д vдlїd dдтз.Ұщй_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Їитєґлдl pяютб©фl эгяюя: '{0}'.Ұщ_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/kk-kz/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ћнэ гёqцєsт эж©ёєds тћз 1 MB sїzє lїмїт. Plэдsё мбdїfу чфця EWS гєqцэsт.Ұщйфдн_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Дл фffsєт fбг тћїs тїмз sтдмp ©фцldй'т вэ fфцлd.Ұщйф_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Єlёvдтєd pзґмїssїюл їs гзqџїяэd тф ©дll тћз мзтћфd: '{0}'.Ұщйфд_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ёlєvдтзd pєгмїssїби їs гзqµїяэd тю д©©ёss pґютє©тєd мзмБзґs бf тћэ JдvдS©гїpт API fюя Юffї©э.ҰщйфднҰ_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ћћє эиd dдтё ф©©цяs ьёfюяз тћз sтдґт dдтз.Ұщй_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ћћз їпpџт dюёsл'т ґёsфlvэ тф д vдlїd dдтз.Ұщй_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Їитєґлдl pяютб©фl эгяюя: '{0}'.Ұщ_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ko-kr/office_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("Strings"); 3 | Strings.OfficeOM = function() 4 | { 5 | }; 6 | Strings.OfficeOM.registerClass("Strings.OfficeOM"); 7 | Strings.OfficeOM.L_InvalidNamedItemForBindingType = "지정한 바인딩 유형이 제공된 명명된 항목과 호환되지 않습니다."; 8 | Strings.OfficeOM.L_EventHandlerNotExist = "지정한 이벤트 종류가 이 개체에서 지원되지 않습니다."; 9 | Strings.OfficeOM.L_UnknownBindingType = "지원되지 않는 바인딩 유형입니다."; 10 | Strings.OfficeOM.L_InvalidNode = "잘못된 노드"; 11 | Strings.OfficeOM.L_NotImplemented = "함수 {0}이(가) 구현되지 않았습니다."; 12 | Strings.OfficeOM.L_NoCapability = "이 작업에 대해 충분한 권한이 없습니다."; 13 | Strings.OfficeOM.L_SettingsCannotSave = "설정을 저장할 수 없습니다."; 14 | Strings.OfficeOM.L_InvalidBinding = "잘못된 바인딩"; 15 | Strings.OfficeOM.L_BindingCreationError = "바인딩 만들기 오류"; 16 | Strings.OfficeOM.L_SelectionNotSupportCoercionType = "현재 선택 항목이 지정한 강제 변환 유형과 호환되지 않습니다."; 17 | Strings.OfficeOM.L_InvalidBindingError = "잘못된 바인딩 오류"; 18 | Strings.OfficeOM.L_InvalidGetStartRowColumn = "지정한 startRow 또는 startColumn 값이 잘못되었습니다."; 19 | Strings.OfficeOM.L_CannotWriteToSelection = "현재 선택 항목에 쓸 수 없습니다."; 20 | Strings.OfficeOM.L_IndexOutOfRange = "인덱스가 범위를 벗어났습니다."; 21 | Strings.OfficeOM.L_SettingsStaleError = "설정 기한 경과 오류"; 22 | Strings.OfficeOM.L_ReadSettingsError = "읽기 설정 오류"; 23 | Strings.OfficeOM.L_CoercionTypeNotSupported = "지정한 강제 변환 유형은 지원되지 않습니다."; 24 | Strings.OfficeOM.L_AppNotExistInitializeNotCalled = "응용 프로그램 {0}이(가) 없습니다. Microsoft.Office.WebExtension.initialize(이유)가 호출되지 않았습니다."; 25 | Strings.OfficeOM.L_OverwriteWorksheetData = "해당 작업을 수행하면 제공된 데이터 개체가 데이터를 덮어쓰거나 바꾸게 되므로 설정된 작업에 실패했습니다."; 26 | Strings.OfficeOM.L_UnsupportedEnumeration = "지원되지 않는 열거형"; 27 | Strings.OfficeOM.L_InvalidParameters = "함수 {0}에 잘못된 매개 변수가 있습니다."; 28 | Strings.OfficeOM.L_DataNotMatchCoercionType = "지정한 데이터 개체의 유형은 현재 선택 항목과 호환되지 않습니다."; 29 | Strings.OfficeOM.L_UnsupportedEnumerationMessage = "열거형은 현재 호스트 응용 프로그램에서 지원되지 않습니다."; 30 | Strings.OfficeOM.L_InvalidCoercion = "잘못된 강제 전환 유형"; 31 | Strings.OfficeOM.L_NotSupportedEventType = "지정한 이벤트 종류 {0}이(가) 지원되지 않습니다."; 32 | Strings.OfficeOM.L_UnsupportedDataObject = "제공된 데이터 개체 유형은 지원되지 않습니다."; 33 | Strings.OfficeOM.L_GetDataIsTooLarge = "요청한 데이터 집합이 너무 큽니다."; 34 | Strings.OfficeOM.L_AppNameNotExist = "{0}에 대한 AppName이 없습니다."; 35 | Strings.OfficeOM.L_AddBindingFromPromptDefaultText = "항목을 선택하세요."; 36 | Strings.OfficeOM.L_MultipleNamedItemFound = "같은 이름을 가진 개체가 여러 개 발견되었습니다."; 37 | Strings.OfficeOM.L_DataNotMatchBindingType = "지정한 데이터 개체는 바인딩 유형과 호환되지 않습니다."; 38 | Strings.OfficeOM.L_NotSupportedBindingType = "지정한 바인딩 유형 {0}이(가) 지원되지 않습니다."; 39 | Strings.OfficeOM.L_InitializeNotReady = "Office.js가 완전히 로드되지 않았습니다. 나중에 다시 시도하거나 Office.initialize 함수에 초기화 코드를 추가하세요."; 40 | Strings.OfficeOM.L_ShuttingDown = "서버의 데이터가 최신 상태가 아니므로 작업에 실패했습니다."; 41 | Strings.OfficeOM.L_OperationNotSupported = "지원하지 않는 작업입니다."; 42 | Strings.OfficeOM.L_DocumentReadOnly = "현재 문서 모드에서 요청한 작업이 허용되지 않습니다."; 43 | Strings.OfficeOM.L_NamedItemNotFound = "명명된 항목이 존재하지 않습니다."; 44 | Strings.OfficeOM.L_InvalidApiCallInContext = "현재 컨텍스트에 잘못된 API 호출이 있습니다."; 45 | Strings.OfficeOM.L_SetDataIsTooLarge = "지정한 데이터 개체가 너무 큽니다."; 46 | Strings.OfficeOM.L_DataWriteError = "데이터 쓰기 오류"; 47 | Strings.OfficeOM.L_InvalidBindingOperation = "잘못된 바인딩 작업"; 48 | Strings.OfficeOM.L_FunctionCallFailed = "함수 {0} 호출이 실패했습니다. 오류 코드: {1}."; 49 | Strings.OfficeOM.L_DataNotMatchBindingSize = "제공된 데이터 개체가 현재 선택 항목의 크기에 맞지 않습니다."; 50 | Strings.OfficeOM.L_SaveSettingsError = "설정 저장 오류"; 51 | Strings.OfficeOM.L_InvalidSetStartRowColumn = "지정한 startRow 또는 startColumn 값이 잘못되었습니다."; 52 | Strings.OfficeOM.L_InvalidFormat = "잘못된 형식 오류"; 53 | Strings.OfficeOM.L_BindingNotExist = "지정한 바인딩이 없습니다."; 54 | Strings.OfficeOM.L_EventHandlerAdditionFailed = "이벤트 처리기를 추가하지 못했습니다."; 55 | Strings.OfficeOM.L_SettingNameNotExist = "지정한 설정 이름이 없습니다."; 56 | Strings.OfficeOM.L_InvalidAPICall = "잘못된 API 호출"; 57 | Strings.OfficeOM.L_EventRegistrationError = "이벤트 등록 오류"; 58 | Strings.OfficeOM.L_NonUniformPartialSetNotSupported = "테이블에 병합된 셀이 포함되어 있으면 좌표 매개 변수를 강제 변환 유형 테이블과 함께 사용할 수 없습니다."; 59 | Strings.OfficeOM.L_RedundantCallbackSpecification = "인수 목록과 선택적 개체 모두에 콜백을 지정할 수는 없습니다."; 60 | Strings.OfficeOM.L_CustomXmlError = "사용자 지정 XML 오류입니다."; 61 | Strings.OfficeOM.L_SettingsAreStale = "설정이 최신 상태가 아니므로 저장할 수 없습니다."; 62 | Strings.OfficeOM.L_TooManyOptionalFunction = "매개 변수 목록에 선택적 함수가 여러 개 있습니다."; 63 | Strings.OfficeOM.L_MissingRequiredArguments = "일부 필수 인수가 없습니다."; 64 | Strings.OfficeOM.L_NonUniformPartialGetNotSupported = "테이블에 병합된 셀이 포함되어 있으면 좌표 매개 변수를 강제 변환 유형 테이블과 함께 사용할 수 없습니다."; 65 | Strings.OfficeOM.L_HostError = "호스트 오류"; 66 | Strings.OfficeOM.L_InvalidSelectionForBindingType = "현재 선택 항목과 지정한 바인딩 유형으로는 바인딩을 만들 수 없습니다."; 67 | Strings.OfficeOM.L_TooManyOptionalObjects = "매개 변수 목록에 선택적 개체가 여러 개 있습니다."; 68 | Strings.OfficeOM.L_EventHandlerRemovalFailed = "이벤트 처리기를 제거하지 못했습니다."; 69 | Strings.OfficeOM.L_BindingToMultipleSelection = "연속되지 않은 항목을 선택할 수 없습니다."; 70 | Strings.OfficeOM.L_DataReadError = "데이터 읽기 오류"; 71 | Strings.OfficeOM.L_InternalErrorDescription = "내부 오류가 발생했습니다."; 72 | Strings.OfficeOM.L_InvalidDataFormat = "지정한 데이터 개체의 형식이 잘못되었습니다."; 73 | Strings.OfficeOM.L_DataStale = "최신 상태가 아닌 데이터"; 74 | Strings.OfficeOM.L_GetSelectionNotSupported = "현재 선택 항목은 지원되지 않습니다."; 75 | Strings.OfficeOM.L_PermissionDenied = "사용 권한 거부됨"; 76 | Strings.OfficeOM.L_InvalidDataObject = "잘못된 데이터 개체"; 77 | Strings.OfficeOM.L_SelectionCannotBound = "현재 선택 항목에 바인딩할 수 없습니다."; 78 | Strings.OfficeOM.L_BadSelectorString = "선택기로 전달된 문자열이 지원되지 않거나 형식이 잘못되었습니다."; 79 | Strings.OfficeOM.L_InvalidGetRowColumnCounts = "지정한 rowCount 또는 columnCount 값이 잘못되었습니다."; 80 | Strings.OfficeOM.L_OsfControlTypeNotSupported = "OsfControl 형식은 지원되지 않습니다."; 81 | Strings.OfficeOM.L_DataNotMatchSelection = "제공된 데이터 개체와 현재 선택 항목의 모양 또는 크기가 호환되지 않습니다."; 82 | Strings.OfficeOM.L_InternalError = "내부 오류"; 83 | Strings.OfficeOM.L_NotSupported = "함수 {0}은(는) 지원되지 않습니다."; 84 | Strings.OfficeOM.L_CustomXmlNodeNotFound = "지정된 노드를 찾을 수 없습니다."; 85 | Strings.OfficeOM.L_CoercionTypeNotMatchBinding = "지정한 강제 변환 유형은 이 바인딩 유형과 호환되지 않습니다."; 86 | Strings.OfficeOM.L_TooManyArguments = "인수가 너무 많습니다."; 87 | Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType = "이 바인딩 유형에서는 작업이 지원되지 않습니다."; 88 | Strings.OfficeOM.L_InValidOptionalArgument = "잘못된 선택적 인수입니다."; 89 | Strings.OfficeOM.L_FileTypeNotSupported = "지정한 파일 형식이 지원되지 않습니다."; 90 | Strings.OfficeOM.L_CallbackNotAFunction = "콜백이 함수 유형이어야 하는데 {0} 유형입니다." 91 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ko-kr/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="지정한 바인딩 유형이 제공된 명명된 항목과 호환되지 않습니다.";Strings.OfficeOM.L_EventHandlerNotExist="지정한 이벤트 종류가 이 개체에서 지원되지 않습니다.";Strings.OfficeOM.L_UnknownBindingType="지원되지 않는 바인딩 유형입니다.";Strings.OfficeOM.L_InvalidNode="잘못된 노드";Strings.OfficeOM.L_NotImplemented="함수 {0}이(가) 구현되지 않았습니다.";Strings.OfficeOM.L_NoCapability="이 작업에 대해 충분한 권한이 없습니다.";Strings.OfficeOM.L_SettingsCannotSave="설정을 저장할 수 없습니다.";Strings.OfficeOM.L_InvalidBinding="잘못된 바인딩";Strings.OfficeOM.L_BindingCreationError="바인딩 만들기 오류";Strings.OfficeOM.L_SelectionNotSupportCoercionType="현재 선택 항목이 지정한 강제 변환 유형과 호환되지 않습니다.";Strings.OfficeOM.L_InvalidBindingError="잘못된 바인딩 오류";Strings.OfficeOM.L_InvalidGetStartRowColumn="지정한 startRow 또는 startColumn 값이 잘못되었습니다.";Strings.OfficeOM.L_CannotWriteToSelection="현재 선택 항목에 쓸 수 없습니다.";Strings.OfficeOM.L_IndexOutOfRange="인덱스가 범위를 벗어났습니다.";Strings.OfficeOM.L_SettingsStaleError="설정 기한 경과 오류";Strings.OfficeOM.L_ReadSettingsError="읽기 설정 오류";Strings.OfficeOM.L_CoercionTypeNotSupported="지정한 강제 변환 유형은 지원되지 않습니다.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="응용 프로그램 {0}이(가) 없습니다. Microsoft.Office.WebExtension.initialize(이유)가 호출되지 않았습니다.";Strings.OfficeOM.L_OverwriteWorksheetData="해당 작업을 수행하면 제공된 데이터 개체가 데이터를 덮어쓰거나 바꾸게 되므로 설정된 작업에 실패했습니다.";Strings.OfficeOM.L_UnsupportedEnumeration="지원되지 않는 열거형";Strings.OfficeOM.L_InvalidParameters="함수 {0}에 잘못된 매개 변수가 있습니다.";Strings.OfficeOM.L_DataNotMatchCoercionType="지정한 데이터 개체의 유형은 현재 선택 항목과 호환되지 않습니다.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="열거형은 현재 호스트 응용 프로그램에서 지원되지 않습니다.";Strings.OfficeOM.L_InvalidCoercion="잘못된 강제 전환 유형";Strings.OfficeOM.L_NotSupportedEventType="지정한 이벤트 종류 {0}이(가) 지원되지 않습니다.";Strings.OfficeOM.L_UnsupportedDataObject="제공된 데이터 개체 유형은 지원되지 않습니다.";Strings.OfficeOM.L_GetDataIsTooLarge="요청한 데이터 집합이 너무 큽니다.";Strings.OfficeOM.L_AppNameNotExist="{0}에 대한 AppName이 없습니다.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="항목을 선택하세요.";Strings.OfficeOM.L_MultipleNamedItemFound="같은 이름을 가진 개체가 여러 개 발견되었습니다.";Strings.OfficeOM.L_DataNotMatchBindingType="지정한 데이터 개체는 바인딩 유형과 호환되지 않습니다.";Strings.OfficeOM.L_NotSupportedBindingType="지정한 바인딩 유형 {0}이(가) 지원되지 않습니다.";Strings.OfficeOM.L_InitializeNotReady="Office.js가 완전히 로드되지 않았습니다. 나중에 다시 시도하거나 Office.initialize 함수에 초기화 코드를 추가하세요.";Strings.OfficeOM.L_ShuttingDown="서버의 데이터가 최신 상태가 아니므로 작업에 실패했습니다.";Strings.OfficeOM.L_OperationNotSupported="지원하지 않는 작업입니다.";Strings.OfficeOM.L_DocumentReadOnly="현재 문서 모드에서 요청한 작업이 허용되지 않습니다.";Strings.OfficeOM.L_NamedItemNotFound="명명된 항목이 존재하지 않습니다.";Strings.OfficeOM.L_InvalidApiCallInContext="현재 컨텍스트에 잘못된 API 호출이 있습니다.";Strings.OfficeOM.L_SetDataIsTooLarge="지정한 데이터 개체가 너무 큽니다.";Strings.OfficeOM.L_DataWriteError="데이터 쓰기 오류";Strings.OfficeOM.L_InvalidBindingOperation="잘못된 바인딩 작업";Strings.OfficeOM.L_FunctionCallFailed="함수 {0} 호출이 실패했습니다. 오류 코드: {1}.";Strings.OfficeOM.L_DataNotMatchBindingSize="제공된 데이터 개체가 현재 선택 항목의 크기에 맞지 않습니다.";Strings.OfficeOM.L_SaveSettingsError="설정 저장 오류";Strings.OfficeOM.L_InvalidSetStartRowColumn="지정한 startRow 또는 startColumn 값이 잘못되었습니다.";Strings.OfficeOM.L_InvalidFormat="잘못된 형식 오류";Strings.OfficeOM.L_BindingNotExist="지정한 바인딩이 없습니다.";Strings.OfficeOM.L_EventHandlerAdditionFailed="이벤트 처리기를 추가하지 못했습니다.";Strings.OfficeOM.L_SettingNameNotExist="지정한 설정 이름이 없습니다.";Strings.OfficeOM.L_InvalidAPICall="잘못된 API 호출";Strings.OfficeOM.L_EventRegistrationError="이벤트 등록 오류";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="테이블에 병합된 셀이 포함되어 있으면 좌표 매개 변수를 강제 변환 유형 테이블과 함께 사용할 수 없습니다.";Strings.OfficeOM.L_RedundantCallbackSpecification="인수 목록과 선택적 개체 모두에 콜백을 지정할 수는 없습니다.";Strings.OfficeOM.L_CustomXmlError="사용자 지정 XML 오류입니다.";Strings.OfficeOM.L_SettingsAreStale="설정이 최신 상태가 아니므로 저장할 수 없습니다.";Strings.OfficeOM.L_TooManyOptionalFunction="매개 변수 목록에 선택적 함수가 여러 개 있습니다.";Strings.OfficeOM.L_MissingRequiredArguments="일부 필수 인수가 없습니다.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="테이블에 병합된 셀이 포함되어 있으면 좌표 매개 변수를 강제 변환 유형 테이블과 함께 사용할 수 없습니다.";Strings.OfficeOM.L_HostError="호스트 오류";Strings.OfficeOM.L_InvalidSelectionForBindingType="현재 선택 항목과 지정한 바인딩 유형으로는 바인딩을 만들 수 없습니다.";Strings.OfficeOM.L_TooManyOptionalObjects="매개 변수 목록에 선택적 개체가 여러 개 있습니다.";Strings.OfficeOM.L_EventHandlerRemovalFailed="이벤트 처리기를 제거하지 못했습니다.";Strings.OfficeOM.L_BindingToMultipleSelection="연속되지 않은 항목을 선택할 수 없습니다.";Strings.OfficeOM.L_DataReadError="데이터 읽기 오류";Strings.OfficeOM.L_InternalErrorDescription="내부 오류가 발생했습니다.";Strings.OfficeOM.L_InvalidDataFormat="지정한 데이터 개체의 형식이 잘못되었습니다.";Strings.OfficeOM.L_DataStale="최신 상태가 아닌 데이터";Strings.OfficeOM.L_GetSelectionNotSupported="현재 선택 항목은 지원되지 않습니다.";Strings.OfficeOM.L_PermissionDenied="사용 권한 거부됨";Strings.OfficeOM.L_InvalidDataObject="잘못된 데이터 개체";Strings.OfficeOM.L_SelectionCannotBound="현재 선택 항목에 바인딩할 수 없습니다.";Strings.OfficeOM.L_BadSelectorString="선택기로 전달된 문자열이 지원되지 않거나 형식이 잘못되었습니다.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="지정한 rowCount 또는 columnCount 값이 잘못되었습니다.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl 형식은 지원되지 않습니다.";Strings.OfficeOM.L_DataNotMatchSelection="제공된 데이터 개체와 현재 선택 항목의 모양 또는 크기가 호환되지 않습니다.";Strings.OfficeOM.L_InternalError="내부 오류";Strings.OfficeOM.L_NotSupported="함수 {0}은(는) 지원되지 않습니다.";Strings.OfficeOM.L_CustomXmlNodeNotFound="지정된 노드를 찾을 수 없습니다.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="지정한 강제 변환 유형은 이 바인딩 유형과 호환되지 않습니다.";Strings.OfficeOM.L_TooManyArguments="인수가 너무 많습니다.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="이 바인딩 유형에서는 작업이 지원되지 않습니다.";Strings.OfficeOM.L_InValidOptionalArgument="잘못된 선택적 인수입니다.";Strings.OfficeOM.L_FileTypeNotSupported="지정한 파일 형식이 지원되지 않습니다.";Strings.OfficeOM.L_CallbackNotAFunction="콜백이 함수 유형이어야 하는데 {0} 유형입니다." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ko-kr/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ko-kr/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/lt-lt/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Thē ŗęqųéšt ė×¢éėdś thė 1 MB §įżé ļįmįt. Płęæ§é mōdįfy yōüŗ EWS ŗéqµéšt.ąžčęįūšų_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Äņ ōffšét f¤ŗ thį§ tīmė štąmp č¤ųłdņ't ßė fóüńd.ąžčęį_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ēłévåtėd pēŗmįś§ī¤ņ įś ŗēqµįŗēd tõ ćāļł thē mēth°d: '{0}'.ąžčęįū_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ęļėvåtēd pėŗmįś§įōņ īś ŗėqµįŗéd tø ą¢ćēšś pŗötēćtėd mēmßéŗś øf thė JævæŚćŗīpt API f¤ŗ Öffįćé.ąžčęįūšųėą_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Thē ęņd dætē õ¢čųŗś ßęföŗė thė śtąŗt dåté.ąžčęį_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Thé įńpüt d°ēšņ't ŗę§õłvē t¤ æ vąļįd däté.ąžčęį_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Įńtéŗńæł pŗ°tó¢õł ęŗŗöŗ: '{0}'.ąžč_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/lt-lt/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Thē ŗęqųéšt ė×¢éėdś thė 1 MB §įżé ļįmįt. Płęæ§é mōdįfy yōüŗ EWS ŗéqµéšt.ąžčęįūšų_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Äņ ōffšét f¤ŗ thį§ tīmė štąmp č¤ųłdņ't ßė fóüńd.ąžčęį_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ēłévåtėd pēŗmįś§ī¤ņ įś ŗēqµįŗēd tõ ćāļł thē mēth°d: '{0}'.ąžčęįū_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ęļėvåtēd pėŗmįś§įōņ īś ŗėqµįŗéd tø ą¢ćēšś pŗötēćtėd mēmßéŗś øf thė JævæŚćŗīpt API f¤ŗ Öffįćé.ąžčęįūšųėą_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Thē ęņd dætē õ¢čųŗś ßęföŗė thė śtąŗt dåté.ąžčęį_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Thé įńpüt d°ēšņ't ŗę§õłvē t¤ æ vąļįd däté.ąžčęį_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Įńtéŗńæł pŗ°tó¢õł ęŗŗöŗ: '{0}'.ąžč_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/lv-lv/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Thē ŗęqųéšt ė×¢éėdś thė 1 MB §įżé ļįmįt. Płęæ§é mōdįfy yōüŗ EWS ŗéqµéšt.ĀēģĢĪķ_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Äņ ōffšét f¤ŗ thį§ tīmė štąmp č¤ųłdņ't ßė fóüńd.ĀēģĢ_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ēłévåtėd pēŗmįś§ī¤ņ įś ŗēqµįŗēd tõ ćāļł thē mēth°d: '{0}'.ĀēģĢĪ_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ęļėvåtēd pėŗmįś§įōņ īś ŗėqµįŗéd tø ą¢ćēšś pŗötēćtėd mēmßéŗś øf thė JævæŚćŗīpt API f¤ŗ Öffįćé.ĀēģĢĪķļ_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Thē ęņd dætē õ¢čųŗś ßęföŗė thė śtąŗt dåté.Āēģ_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Thé įńpüt d°ēšņ't ŗę§õłvē t¤ æ vąļįd däté.Āēģ_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Įńtéŗńæł pŗ°tó¢õł ęŗŗöŗ: '{0}'.Āē_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/lv-lv/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Thē ŗęqųéšt ė×¢éėdś thė 1 MB §įżé ļįmįt. Płęæ§é mōdįfy yōüŗ EWS ŗéqµéšt.ĀēģĢĪķ_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Äņ ōffšét f¤ŗ thį§ tīmė štąmp č¤ųłdņ't ßė fóüńd.ĀēģĢ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ēłévåtėd pēŗmįś§ī¤ņ įś ŗēqµįŗēd tõ ćāļł thē mēth°d: '{0}'.ĀēģĢĪ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ęļėvåtēd pėŗmįś§įōņ īś ŗėqµįŗéd tø ą¢ćēšś pŗötēćtėd mēmßéŗś øf thė JævæŚćŗīpt API f¤ŗ Öffįćé.ĀēģĢĪķļ_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Thē ęņd dætē õ¢čųŗś ßęföŗė thė śtąŗt dåté.Āēģ_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Thé įńpüt d°ēšņ't ŗę§õłvē t¤ æ vąļįd däté.Āēģ_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Įńtéŗńæł pŗ°tó¢õł ęŗŗöŗ: '{0}'.Āē_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ms-my/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Thè réqµést éx¢êéðs thé 1 MB sîzé lîmît. Plëªsé mõðïfý ÿøµr EWS réqùëst.aiya_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Ãñ òffsêt fôr thïs tímê ståmp çõülðñ't þé fóµñð.aiy_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Êlévâtèð pèrmìssïóñ ís rëqüîrèð tò ¢æll thë mèthôð: '{0}'.aiy_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Élêvätèð pêrmíssïóñ îs rèqµírèð tõ 梢éss pröté¢téð mêmþêrs ôf thè Jävã§çrípt API fòr Óffî¢ë.aiyaiy_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Thè ëñð ðátë óç¢úrs þëfõré thê stärt ðàtë.aiy_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Thé ïñpùt ðòésñ't résølvë tó â vàlïð ðåtë.aiy_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Ïñtérñàl prøtò¢õl érrör: '{0}'.ai_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ms-my/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Thè réqµést éx¢êéðs thé 1 MB sîzé lîmît. Plëªsé mõðïfý ÿøµr EWS réqùëst.aiya_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Ãñ òffsêt fôr thïs tímê ståmp çõülðñ't þé fóµñð.aiy_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Êlévâtèð pèrmìssïóñ ís rëqüîrèð tò ¢æll thë mèthôð: '{0}'.aiy_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Élêvätèð pêrmíssïóñ îs rèqµírèð tõ 梢éss pröté¢téð mêmþêrs ôf thè Jävã§çrípt API fòr Óffî¢ë.aiyaiy_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Thè ëñð ðátë óç¢úrs þëfõré thê stärt ðàtë.aiy_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Thé ïñpùt ðòésñ't résølvë tó â vàlïð ðåtë.aiy_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Ïñtérñàl prøtò¢õl érrör: '{0}'.ai_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/nb-no/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/nb-no/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/nl-nl/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/nl-nl/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/pl-pl/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/pl-pl/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/pt-br/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/pt-br/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/pt-pt/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/pt-pt/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ro-ro/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ťhě řëqúëśţ ěxćęęďš ťhé 1 MB śîźę ĺîmîţ. Pĺëąśë móđífý ýőüŕ EWS ŕęqµëśţ.ȘȚșțĂîȘȚșțĂ_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Äň öffšéť föŕ ťhíş ţîmę śţąmp čőúĺďň'ţ bë főµňď.ȘȚșțĂîȘ_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő čäľł ţhę męťhőď: '{0}'.ȘȚșțĂîȘȚș_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő ąčçéşš pŕöťěćţęď mëmbëŕş öf ťhę JăváŞçřîpţ API fóř Öffîčë.ȘȚșțĂîȘȚșțĂîȘȚ_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ťhě ěňđ ďąţě ôćçüŕś béföřë ţhě śťářť ďäťé.ȘȚșțĂî_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ťhě îňpúť ďôěşń'ţ řęśóĺvě ťô ą vąĺíď ďąťë.ȘȚșțĂî_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Îňťëŕňąľ přôţôçôĺ éřřőŕ: '{0}'.ȘȚșțĂ_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ro-ro/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ťhě řëqúëśţ ěxćęęďš ťhé 1 MB śîźę ĺîmîţ. Pĺëąśë móđífý ýőüŕ EWS ŕęqµëśţ.ȘȚșțĂîȘȚșțĂ_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Äň öffšéť föŕ ťhíş ţîmę śţąmp čőúĺďň'ţ bë főµňď.ȘȚșțĂîȘ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő čäľł ţhę męťhőď: '{0}'.ȘȚșțĂîȘȚș_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő ąčçéşš pŕöťěćţęď mëmbëŕş öf ťhę JăváŞçřîpţ API fóř Öffîčë.ȘȚșțĂîȘȚșțĂîȘȚ_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ťhě ěňđ ďąţě ôćçüŕś béföřë ţhě śťářť ďäťé.ȘȚșțĂî_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ťhě îňpúť ďôěşń'ţ řęśóĺvě ťô ą vąĺíď ďąťë.ȘȚșțĂî_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Îňťëŕňąľ přôţôçôĺ éřřőŕ: '{0}'.ȘȚșțĂ_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ru-ru/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/ru-ru/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sk-sk/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ťhě řëqúëśţ ěxćęęďš ťhé 1 MB śîźę ĺîmîţ. Pĺëąśë móđífý ýőüŕ EWS ŕęqµëśţ.džľôäždžľ_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Äň öffšéť föŕ ťhíş ţîmę śţąmp čőúĺďň'ţ bë főµňď.džľôäž_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő čäľł ţhę męťhőď: '{0}'.džľôäžd_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő ąčçéşš pŕöťěćţęď mëmbëŕş öf ťhę JăváŞçřîpţ API fóř Öffîčë.džľôäždžľôä_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ťhě ěňđ ďąţě ôćçüŕś béföřë ţhě śťářť ďäťé.džľôä_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ťhě îňpúť ďôěşń'ţ řęśóĺvě ťô ą vąĺíď ďąťë.džľôä_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Îňťëŕňąľ přôţôçôĺ éřřőŕ: '{0}'.džľô_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sk-sk/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ťhě řëqúëśţ ěxćęęďš ťhé 1 MB śîźę ĺîmîţ. Pĺëąśë móđífý ýőüŕ EWS ŕęqµëśţ.džľôäždžľ_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Äň öffšéť föŕ ťhíş ţîmę śţąmp čőúĺďň'ţ bë főµňď.džľôäž_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő čäľł ţhę męťhőď: '{0}'.džľôäžd_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ëĺěvăţëď pęřmíşšîôň íś řëqúîřěđ ťő ąčçéşš pŕöťěćţęď mëmbëŕş öf ťhę JăváŞçřîpţ API fóř Öffîčë.džľôäždžľôä_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ťhě ěňđ ďąţě ôćçüŕś béföřë ţhě śťářť ďäťé.džľôä_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ťhě îňpúť ďôěşń'ţ řęśóĺvě ťô ą vąĺíď ďąťë.džľôä_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Îňťëŕňąľ přôţôçôĺ éřřőŕ: '{0}'.džľô_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sl-si/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.ĐđčšžĐ_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Ăň óffšęť fôř ťhíš ťímé śţámp čóűłđń'ť bé fôµňđ.Đđčš_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.Đđčšž_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăćçęşš přóţęćţëď měmběŕš ôf ţhě JävăŚçŕípť API fôř Ôffîçě.ĐđčšžĐđč_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ţhě ëňđ đąţę őćçµřš bëfőŕé ťhé šţáŕţ ďáťë.Đđčš_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.Đđčš_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.Đđč_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sl-si/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.ĐđčšžĐ_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Ăň óffšęť fôř ťhíš ťímé śţámp čóűłđń'ť bé fôµňđ.Đđčš_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.Đđčšž_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăćçęşš přóţęćţëď měmběŕš ôf ţhě JävăŚçŕípť API fôř Ôffîçě.ĐđčšžĐđč_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ţhě ëňđ đąţę őćçµřš bëfőŕé ťhé šţáŕţ ďáťë.Đđčš_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.Đđčš_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.Đđč_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sr-latn-cs/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.džšćđČdžšćđČ_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Ăň óffšęť fôř ťhíš ťímé śţámp čóűłđń'ť bé fôµňđ.džšćđČdž_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.džšćđČdžš_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăćçęşš přóţęćţëď měmběŕš ôf ţhě JävăŚçŕípť API fôř Ôffîçě.džšćđČdžšćđČdžš_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ţhě ëňđ đąţę őćçµřš bëfőŕé ťhé šţáŕţ ďáťë.džšćđČd_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.džšćđČd_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.džšćđ_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sr-latn-cs/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ţhę řęqűëšţ ěxçëęďś ťhé 1 MB şîźě łîmîť. Pľéąşé mőđífý ýőűř EWS řëqüęşţ.džšćđČdžšćđČ_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Ăň óffšęť fôř ťhíš ťímé śţámp čóűłđń'ť bé fôµňđ.džšćđČdž_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëľęváťéđ pěŕmîšśîőń íş řěqµíŕęđ ťó ćáľĺ ţhë měťhôđ: '{0}'.džšćđČdžš_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Ęľëváţëđ pěŕmîśşîôń îš řěqüířęď ţó ăćçęşš přóţęćţëď měmběŕš ôf ţhě JävăŚçŕípť API fôř Ôffîçě.džšćđČdžšćđČdžš_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ţhě ëňđ đąţę őćçµřš bëfőŕé ťhé šţáŕţ ďáťë.džšćđČd_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ţhě íńpüţ đőęśň'ţ ŕéśöłvě ťö â văłíď đăťé.džšćđČd_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Îńţëŕňáĺ přôťôćöľ ěŕřôŕ: '{0}'.džšćđ_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sv-se/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/sv-se/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/th-th/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="ชนิดการผูกที่ระบุเข้ากันไม่ได้กับรายการที่มีชื่อที่ให้มา";Strings.OfficeOM.L_EventHandlerNotExist="ไม่สนับสนุนชนิดเหตุการณ์ที่ระบุบนวัตถุนี้";Strings.OfficeOM.L_UnknownBindingType="ไม่สนับสนุนชนิดการผูกนี้";Strings.OfficeOM.L_InvalidNode="โหนดไม่ถูกต้อง";Strings.OfficeOM.L_NotImplemented="ฟังก์ชัน {0} ยังไม่ถูกนำมาใช้งาน";Strings.OfficeOM.L_NoCapability="คุณไม่มีสิทธิ์เพียงพอสำหรับการกระทำนี้";Strings.OfficeOM.L_SettingsCannotSave="ไม่สามารถบันทึกการตั้งค่าได้";Strings.OfficeOM.L_InvalidBinding="การผูกไม่ถูกต้อง";Strings.OfficeOM.L_BindingCreationError="การสร้างการผูกผิดพลาด";Strings.OfficeOM.L_SelectionNotSupportCoercionType="ส่วนที่เลือกปัจจุบันนี้เข้ากันไม่ได้กับชนิดการบังคับใช้ที่ระบุ";Strings.OfficeOM.L_InvalidBindingError="ข้อผิดพลาดของการผูกที่ไม่ถูกต้อง";Strings.OfficeOM.L_InvalidGetStartRowColumn="ค่าของ startRow หรือ startColumn ที่ระบุไม่ถูกต้อง";Strings.OfficeOM.L_CannotWriteToSelection="ไม่สามารถเขียนไปยังส่วนที่เลือกในปัจจุบันได้";Strings.OfficeOM.L_IndexOutOfRange="ดัชนีไม่อยู่ในช่วง";Strings.OfficeOM.L_SettingsStaleError="การตั้งค่าเดิมผิดพลาด";Strings.OfficeOM.L_ReadSettingsError="การตั้งค่าการอ่านผิดพลาด";Strings.OfficeOM.L_CoercionTypeNotSupported="ชนิดการบังคับใช้ที่ระบุไม่ได้รับการสนับสนุน";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="ไม่มีแอปพลิเคชัน {0} Microsoft.Office.WebExtension.initialize(reason) ไม่ถูกเรียก";Strings.OfficeOM.L_OverwriteWorksheetData="การดำเนินการของชุดล้มเหลว เนื่องจากวัตถุข้อมูลที่ให้มาจะเขียนทับหรือเลื่อนข้อมูล";Strings.OfficeOM.L_UnsupportedEnumeration="การแจงนับที่ไม่ได้รับการสนับสนุน";Strings.OfficeOM.L_InvalidParameters="ฟังก์ชัน {0} มีพารามิเตอร์ที่ไม่ถูกต้อง";Strings.OfficeOM.L_DataNotMatchCoercionType="ชนิดวัตถุข้อมูลที่ระบุเข้ากันไม่ได้กับส่วนที่เลือกปัจจุบัน";Strings.OfficeOM.L_UnsupportedEnumerationMessage="การแจงนับไม่ได้รับการสนับสนุนในแอปพลิเคชันที่เป็นโฮสต์ในปัจจุบัน";Strings.OfficeOM.L_InvalidCoercion="ชนิดของการบังคับใช้ไม่ถูกต้อง";Strings.OfficeOM.L_NotSupportedEventType="ไม่สนับสนุนชนิดเหตุการณ์ที่ระบุ {0}";Strings.OfficeOM.L_UnsupportedDataObject="ชนิดวัตถุข้อมูลที่ให้มาไม่ได้รับการสนับสนุน";Strings.OfficeOM.L_GetDataIsTooLarge="ชุดข้อมูลที่ร้องขอมีขนาดใหญ่เกินไป";Strings.OfficeOM.L_AppNameNotExist="ไม่มี AppName สำหรับ {0} อยู่";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="โปรดเลือก";Strings.OfficeOM.L_MultipleNamedItemFound="พบหลายวัตถุที่มีชื่อเดียวกัน";Strings.OfficeOM.L_DataNotMatchBindingType="วัตถุข้อมูลที่ระบุไม่เข้ากันกับชนิดการผูก";Strings.OfficeOM.L_NotSupportedBindingType="ไม่สนับสนุนชนิดการผูกที่ระบุ {0}";Strings.OfficeOM.L_InitializeNotReady="ยังไม่ได้โหลด Office.js แบบเต็ม โปรดลองอีกครั้งในภายหลัง หรือตรวจสอบให้แน่ใจว่าได้เพิ่มโค้ดการเตรียมใช้งานของคุณบนฟังก์ชัน Office.initialize ";Strings.OfficeOM.L_ShuttingDown="การดำเนินการล้มเหลวเพราะข้อมูลไม่เป็นข้อมูลปัจจุบันบนเซิร์ฟเวอร์";Strings.OfficeOM.L_OperationNotSupported="ไม่สนับสนุนการดำเนินการนี้";Strings.OfficeOM.L_DocumentReadOnly="ไม่อนุญาตการดำเนินการที่ร้องขอในโหมดเอกสารปัจจุบัน";Strings.OfficeOM.L_NamedItemNotFound="ไม่มีรายการที่มีชื่ออยู่";Strings.OfficeOM.L_InvalidApiCallInContext="การเรียก API ในบริบทปัจจุบันไม่ถูกต้อง";Strings.OfficeOM.L_SetDataIsTooLarge="วัตถุข้อมูลที่ระบุมีขนาดใหญ่เกินไป";Strings.OfficeOM.L_DataWriteError="การเขียนข้อมูลผิดพลาด";Strings.OfficeOM.L_InvalidBindingOperation="การดำเนินการผูกที่ไม่ถูกต้อง";Strings.OfficeOM.L_FunctionCallFailed="การเรียกฟังก์ชัน {0} ล้มเหลว รหัสข้อผิดพลาด: {1}";Strings.OfficeOM.L_DataNotMatchBindingSize="วัตถุข้อมูลที่ให้มามีขนาดไม่ตรงกันกับส่วนที่เลือกปัจจุบัน";Strings.OfficeOM.L_SaveSettingsError="การตั้งค่าการบันทึกผิดพลาด";Strings.OfficeOM.L_InvalidSetStartRowColumn="ค่าของ startRow หรือ startColumn ที่ระบุไม่ถูกต้อง";Strings.OfficeOM.L_InvalidFormat="ข้อผิดพลาดรูปแบบไม่ถูกต้อง";Strings.OfficeOM.L_BindingNotExist="การรวมที่ระบุไม่มีอยู่";Strings.OfficeOM.L_EventHandlerAdditionFailed="ไม่สามารถเพิ่มตัวจัดการเหตุการณ์ได้";Strings.OfficeOM.L_SettingNameNotExist="ไม่มีชื่อการตั้งค่าที่ระบุ";Strings.OfficeOM.L_InvalidAPICall="การเรียก API ไม่ถูกต้อง";Strings.OfficeOM.L_EventRegistrationError="การลงทะเบียนเหตุการณ์ผิดพลาด";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="ไม่สามารถใช้พารามิเตอร์พิกัดกับชนิดการบังคับใช้ตารางได้ เมื่อตารางนั้นมีเซลล์ที่ถูกผสาน";Strings.OfficeOM.L_RedundantCallbackSpecification="ไม่สามารถระบุการติดต่อกลับทั้งในรายการอาร์กิวเมนต์และในวัตถุทางเลือก";Strings.OfficeOM.L_CustomXmlError="ข้อผิดพลาด XML แบบกำหนดเอง";Strings.OfficeOM.L_SettingsAreStale="ไม่สามารถบันทึกการตั้งค่าได้เพราะไม่เป็นข้อมูลปัจจุบัน";Strings.OfficeOM.L_TooManyOptionalFunction="ฟังก์ชันทางเลือกหลายฟังก์ชันในรายการพารามิเตอร์";Strings.OfficeOM.L_MissingRequiredArguments="อาร์กิวเมนต์ที่จำเป็นบางอย่างหายไป";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="ไม่สามารถใช้พารามิเตอร์พิกัดกับชนิดการบังคับใช้ตารางได้ เมื่อตารางนั้นมีเซลล์ที่ถูกผสาน";Strings.OfficeOM.L_HostError="โฮสต์ผิดพลาด";Strings.OfficeOM.L_InvalidSelectionForBindingType="ไม่สามารถสร้างการผูกกับการเลือกปัจจุบันและชนิดการผูกที่ระบุได้";Strings.OfficeOM.L_TooManyOptionalObjects="วัตถุทางเลือกหลายวัตถุในรายการพารามิเตอร์";Strings.OfficeOM.L_EventHandlerRemovalFailed="ไม่สามารถเอาตัวจัดการเหตุการณ์ออกได้";Strings.OfficeOM.L_BindingToMultipleSelection="ไม่สนับสนุนส่วนที่เลือกแบบไม่ติดกัน";Strings.OfficeOM.L_DataReadError="การอ่านข้อมูลผิดพลาด";Strings.OfficeOM.L_InternalErrorDescription="มีข้อผิดพลาดภายในเกิดขึ้น";Strings.OfficeOM.L_InvalidDataFormat="รูปแบบของวัตถุข้อมูลที่ระบุไม่ถูกต้อง";Strings.OfficeOM.L_DataStale="ข้อมูลไม่เป็นปัจจุบัน";Strings.OfficeOM.L_GetSelectionNotSupported="ส่วนที่เลือกในปัจจุบันไม่ได้รับการสนับสนุน";Strings.OfficeOM.L_PermissionDenied="สิทธิ์ถูกปฏิเสธ";Strings.OfficeOM.L_InvalidDataObject="วัตถุข้อมูลไม่ถูกต้อง";Strings.OfficeOM.L_SelectionCannotBound="ไม่สามารถผูกกับส่วนที่เลือกปัจจุบัน";Strings.OfficeOM.L_BadSelectorString="สตริงที่ส่งผ่านไปยังตัวเลือกได้รับการจัดรูปแบบไม่ถูกต้อง หรือไม่ได้รับการสนับสนุน";Strings.OfficeOM.L_InvalidGetRowColumnCounts="ค่าของ rowCount หรือ columnCount ที่ระบุไม่ถูกต้อง";Strings.OfficeOM.L_OsfControlTypeNotSupported="ไม่สนับสนุนชนิดของ OsfControl";Strings.OfficeOM.L_DataNotMatchSelection="วัตถุข้อมูลที่ให้มาเข้ากันไม่ได้กับรูปร่างหรือมิติของการเลือกปัจจุบัน";Strings.OfficeOM.L_InternalError="ข้อผิดพลาดภายใน";Strings.OfficeOM.L_NotSupported="ไม่สนับสนุนฟังก์ชัน {0}";Strings.OfficeOM.L_CustomXmlNodeNotFound="ไม่พบโหนดที่ระบุ";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="ชนิดการบังคับใช้ที่ระบุเข้ากันไม่ได้กับชนิดการผูกนี้";Strings.OfficeOM.L_TooManyArguments="มีอาร์กิวเมนต์มากเกินไป";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="ชนิดการผูกนี้ไม่สนับสนุนากรดำเนินการนี้";Strings.OfficeOM.L_InValidOptionalArgument="อาร์กิวเมนต์ทางเลือกไม่ถูกต้อง";Strings.OfficeOM.L_FileTypeNotSupported="ชนิดของไฟล์ที่ระบุไม่ได้รับการสนับสนุน";Strings.OfficeOM.L_CallbackNotAFunction="การติดต่อกลับที่ต้องเป็นของฟังก์ชันชนิด กลับเป็นของ {0} ของชนิด" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/th-th/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "น้ำThe request exceeds the 1 MB size limit. Please modify your EWS request.ท้ายสุด"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "น้ำAn offset for this time stamp couldn't be found.ท้ายสุด"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "น้ำElevated permission is required to call the method: '{0}'.ท้ายสุด"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "น้ำElevated permission is required to access protected members of the JavaScript API for Office.ท้ายสุด"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "น้ำThe end date occurs before the start date.ท้ายสุด"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "น้ำThe input doesn't resolve to a valid date.ท้ายสุด"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "น้ำInternal protocol error: '{0}'.ท้ายสุด" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/th-th/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="น้ำThe request exceeds the 1 MB size limit. Please modify your EWS request.ท้ายสุด";_u.ExtensibilityStrings.l_OffsetNotfound_Text="น้ำAn offset for this time stamp couldn't be found.ท้ายสุด";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="น้ำElevated permission is required to call the method: '{0}'.ท้ายสุด";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="น้ำElevated permission is required to access protected members of the JavaScript API for Office.ท้ายสุด";_u.ExtensibilityStrings.l_InvalidEventDates_Text="น้ำThe end date occurs before the start date.ท้ายสุด";_u.ExtensibilityStrings.l_InvalidDate_Text="น้ำThe input doesn't resolve to a valid date.ท้ายสุด";_u.ExtensibilityStrings.l_InternalProtocolError_Text="น้ำInternal protocol error: '{0}'.ท้ายสุด" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/tr-tr/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "İThê rëqûêšt êxçéëdš thé 1 MB šîzé lïmìt. Plëæşé mõdïƒÿ ÿôür EWS rêqúèšt.Iğüıi"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "İÅñ õƒƒşët ƒør thíš tímê štæmp ¢øüldñ't bé ƒøüñd.Iğıi"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "İÊlëvåtêd pèrmîşšïòñ íş réqüìrëd tø çâll thë mëthød: '{0}'.Iğıi"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "İÊlëvåtêd pèrmîşšïòñ íş réqüìrëd tø ä¢çëşš prõtêçtêd mêmbèrš óƒ thë Jäv助rípt API ƒôr Öƒƒïçé.Iğüöıi"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "İThê ëñd dãtè ôç©ürš béƒôré thë štært dætê.Iğıi"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "İThê ïñpút dòêşñ't rëšòlvé tô ã vælìd dætë.Iğıi"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "İÏñtërñál prôtø©øl érròr: '{0}'.Iıi" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/tr-tr/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="İThê rëqûêšt êxçéëdš thé 1 MB šîzé lïmìt. Plëæşé mõdïƒÿ ÿôür EWS rêqúèšt.Iğüıi";_u.ExtensibilityStrings.l_OffsetNotfound_Text="İÅñ õƒƒşët ƒør thíš tímê štæmp ¢øüldñ't bé ƒøüñd.Iğıi";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="İÊlëvåtêd pèrmîşšïòñ íş réqüìrëd tø çâll thë mëthød: '{0}'.Iğıi";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="İÊlëvåtêd pèrmîşšïòñ íş réqüìrëd tø ä¢çëşš prõtêçtêd mêmbèrš óƒ thë Jäv助rípt API ƒôr Öƒƒïçé.Iğüöıi";_u.ExtensibilityStrings.l_InvalidEventDates_Text="İThê ëñd dãtè ôç©ürš béƒôré thë štært dætê.Iğıi";_u.ExtensibilityStrings.l_InvalidDate_Text="İThê ïñpút dòêşñ't rëšòlvé tô ã vælìd dætë.Iğıi";_u.ExtensibilityStrings.l_InternalProtocolError_Text="İÏñtërñál prôtø©øl érròr: '{0}'.Iıi" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/uk-ua/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Ћћэ гзqцэsт эж©ёєds тћз 1 MB sїzэ lїмїт. Plэдsє мбdїfч уфцґ EWS яєqµзsт.ДЖлфюя_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Дл бffsєт fюя тћїs тїмё sтдмp ©бџldл'т ъз fбцлd.ДЖлф_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Єlэvдтзd pєямїssїфй їs гэqџїяєd тб ©дll тћє мєтнфd: '{0}'.ДЖлфю_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Єlэvдтзd pєямїssїфй їs гэqџїяєd тб д©©єss pгбтє©тёd мэмъзгs юf тћє JдvдS©яїpт API fфґ Фffї©ё.ДЖлфюячД_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Ћћэ єиd dдтё б©©цгs Бэfфяэ тнэ sтдґт dдтє.ДЖлф_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Ћћэ їиpцт dюэsй'т гєsюlvэ тб д vдlїd dдтэ.ДЖлф_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Їлтєґпдl pгбтф©юl ёяґбя: '{0}'.ДЖл_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/uk-ua/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Ћћэ гзqцэsт эж©ёєds тћз 1 MB sїzэ lїмїт. Plэдsє мбdїfч уфцґ EWS яєqµзsт.ДЖлфюя_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Дл бffsєт fюя тћїs тїмё sтдмp ©бџldл'т ъз fбцлd.ДЖлф_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Єlэvдтзd pєямїssїфй їs гэqџїяєd тб ©дll тћє мєтнфd: '{0}'.ДЖлфю_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Єlэvдтзd pєямїssїфй їs гэqџїяєd тб д©©єss pгбтє©тёd мэмъзгs юf тћє JдvдS©яїpт API fфґ Фffї©ё.ДЖлфюячД_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Ћћэ єиd dдтё б©©цгs Бэfфяэ тнэ sтдґт dдтє.ДЖлф_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Ћћэ їиpцт dюэsй'т гєsюlvэ тб д vдlїd dдтэ.ДЖлф_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Їлтєґпдl pгбтф©юl ёяґбя: '{0}'.ДЖл_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/vi-vn/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "_Thè ®ëqûést êשëé₫s thé 1 MB sîzê lïmít. Pléäsë m°đïƒÿ ÿóư® EWS ®êqúést.ệôụộị_"; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "_Añ ¤ƒƒsét ƒö® thïs tîmê stämp çóµlđñ't bë ƒøúñđ.ệôụộ_"; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "_Ëlévătè₫ pè®mïssí°ñ ïs ®êqùí®ë₫ t¤ çăll thé méth¤đ: '{0}'.ệôụộ_"; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "_Élêvåtèđ pê®mïssí°ñ ís ®éqùï®ë₫ t° ă¢çêss p®ôtêçtêđ mèmbê®s óƒ thé Jàvá§©®ïpt API ƒơ® Ơƒƒî¢ê.ệôụộịế_"; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "_Thè ëñ₫ đâtë ơç¢ú®s bëƒö®ê thè stá®t đătè.ệôụ_"; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "_Thé ïñpùt ₫óésñ't ®ës¤lvé tö á vªlïđ ₫ætë.ệôụ_"; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "_Ïñté®ñªl p®¤tœçœl é®®ö®: '{0}'.ệôụ_" 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/vi-vn/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="_Thè ®ëqûést êשëé₫s thé 1 MB sîzê lïmít. Pléäsë m°đïƒÿ ÿóư® EWS ®êqúést.ệôụộị_";_u.ExtensibilityStrings.l_OffsetNotfound_Text="_Añ ¤ƒƒsét ƒö® thïs tîmê stämp çóµlđñ't bë ƒøúñđ.ệôụộ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="_Ëlévătè₫ pè®mïssí°ñ ïs ®êqùí®ë₫ t¤ çăll thé méth¤đ: '{0}'.ệôụộ_";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="_Élêvåtèđ pê®mïssí°ñ ís ®éqùï®ë₫ t° ă¢çêss p®ôtêçtêđ mèmbê®s óƒ thé Jàvá§©®ïpt API ƒơ® Ơƒƒî¢ê.ệôụộịế_";_u.ExtensibilityStrings.l_InvalidEventDates_Text="_Thè ëñ₫ đâtë ơç¢ú®s bëƒö®ê thè stá®t đătè.ệôụ_";_u.ExtensibilityStrings.l_InvalidDate_Text="_Thé ïñpùt ₫óésñ't ®ës¤lvé tö á vªlïđ ₫ætë.ệôụ_";_u.ExtensibilityStrings.l_InternalProtocolError_Text="_Ïñté®ñªl p®¤tœçœl é®®ö®: '{0}'.ệôụ_" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-cn/office_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("Strings"); 3 | Strings.OfficeOM = function() 4 | { 5 | }; 6 | Strings.OfficeOM.registerClass("Strings.OfficeOM"); 7 | Strings.OfficeOM.L_InvalidNamedItemForBindingType = "指定的绑定类型与提供的已命名项目不兼容。"; 8 | Strings.OfficeOM.L_EventHandlerNotExist = "此对象不支持指定的事件类型。"; 9 | Strings.OfficeOM.L_UnknownBindingType = "不支持该绑定类型。"; 10 | Strings.OfficeOM.L_InvalidNode = "无效的节点"; 11 | Strings.OfficeOM.L_NotImplemented = "未实现函数 {0}。"; 12 | Strings.OfficeOM.L_NoCapability = "您没有足够的权限执行此操作。"; 13 | Strings.OfficeOM.L_SettingsCannotSave = "无法保存设置。"; 14 | Strings.OfficeOM.L_InvalidBinding = "无效的绑定"; 15 | Strings.OfficeOM.L_BindingCreationError = "绑定创建错误"; 16 | Strings.OfficeOM.L_SelectionNotSupportCoercionType = "当前所选内容与指定强制类型不兼容。"; 17 | Strings.OfficeOM.L_InvalidBindingError = "无效的绑定错误"; 18 | Strings.OfficeOM.L_InvalidGetStartRowColumn = "指定的 startRow 或 startColumn 值无效。"; 19 | Strings.OfficeOM.L_CannotWriteToSelection = "无法写入到当前所选内容。"; 20 | Strings.OfficeOM.L_IndexOutOfRange = "索引超出范围。"; 21 | Strings.OfficeOM.L_SettingsStaleError = "设置过期错误"; 22 | Strings.OfficeOM.L_ReadSettingsError = "读取设置错误"; 23 | Strings.OfficeOM.L_CoercionTypeNotSupported = "不支持指定的强制类型。"; 24 | Strings.OfficeOM.L_AppNotExistInitializeNotCalled = "应用程序 {0} 不存在。Microsoft.Office.WebExtension.initialize(reason) 未被调用。"; 25 | Strings.OfficeOM.L_OverwriteWorksheetData = "设置操作失败,因为提供的数据对象将覆盖或移动数据。"; 26 | Strings.OfficeOM.L_UnsupportedEnumeration = "不受支持的枚举"; 27 | Strings.OfficeOM.L_InvalidParameters = "函数 {0} 包含无效参数。"; 28 | Strings.OfficeOM.L_DataNotMatchCoercionType = "指定的数据对象的类型与当前所选内容不兼容。"; 29 | Strings.OfficeOM.L_UnsupportedEnumerationMessage = "当前宿主应用程序中不支持枚举。"; 30 | Strings.OfficeOM.L_InvalidCoercion = "强制类型无效"; 31 | Strings.OfficeOM.L_NotSupportedEventType = "不支持指定的事件类型 {0}。"; 32 | Strings.OfficeOM.L_UnsupportedDataObject = "提供的数据对象不受支持。"; 33 | Strings.OfficeOM.L_GetDataIsTooLarge = "请求的数据集太大。"; 34 | Strings.OfficeOM.L_AppNameNotExist = "{0} 的应用程序名称不存在。"; 35 | Strings.OfficeOM.L_AddBindingFromPromptDefaultText = "请进行选择。"; 36 | Strings.OfficeOM.L_MultipleNamedItemFound = "找到多个具有相同名称的对象。"; 37 | Strings.OfficeOM.L_DataNotMatchBindingType = "指定的数据对象与绑定类型不兼容。"; 38 | Strings.OfficeOM.L_NotSupportedBindingType = "不支持指定的绑定类型 {0}。"; 39 | Strings.OfficeOM.L_InitializeNotReady = "Office.js 尚未完全加载。请稍后再试或者确保在 Office.initialize 函数上添加初始化代码。"; 40 | Strings.OfficeOM.L_ShuttingDown = "操作失败,因为服务器上的数据不是最新的。"; 41 | Strings.OfficeOM.L_OperationNotSupported = "不支持此项操作。"; 42 | Strings.OfficeOM.L_DocumentReadOnly = "当前文档模式不允许所请求的操作。"; 43 | Strings.OfficeOM.L_NamedItemNotFound = "已命名的项目不存在。"; 44 | Strings.OfficeOM.L_InvalidApiCallInContext = "Invalid API call in the current context."; 45 | Strings.OfficeOM.L_SetDataIsTooLarge = "指定的数据对象太大。"; 46 | Strings.OfficeOM.L_DataWriteError = "数据写入错误"; 47 | Strings.OfficeOM.L_InvalidBindingOperation = "无效的绑定操作"; 48 | Strings.OfficeOM.L_FunctionCallFailed = "函数 {0} 调用失败,错误代码: {1}。"; 49 | Strings.OfficeOM.L_DataNotMatchBindingSize = "提供的数据对象与当前所选内容的大小不匹配。"; 50 | Strings.OfficeOM.L_SaveSettingsError = "保存设置错误"; 51 | Strings.OfficeOM.L_InvalidSetStartRowColumn = "指定的 startRow 或 startColumn 值无效。"; 52 | Strings.OfficeOM.L_InvalidFormat = "无效的格式错误"; 53 | Strings.OfficeOM.L_BindingNotExist = "指定的绑定不存在。"; 54 | Strings.OfficeOM.L_EventHandlerAdditionFailed = "未能添加事件处理程序。"; 55 | Strings.OfficeOM.L_SettingNameNotExist = "指定的设置名称不存在。"; 56 | Strings.OfficeOM.L_InvalidAPICall = "无效的 API 调用"; 57 | Strings.OfficeOM.L_EventRegistrationError = "事件注册错误"; 58 | Strings.OfficeOM.L_NonUniformPartialSetNotSupported = "当强制类型表包含合并的单元格时,坐标参数不能与该表一起使用。"; 59 | Strings.OfficeOM.L_RedundantCallbackSpecification = "不能在参数列表和可选对象中同时指定回调。"; 60 | Strings.OfficeOM.L_CustomXmlError = "自定义 XML 错误。"; 61 | Strings.OfficeOM.L_SettingsAreStale = "无法保存设置,因为它们不是最新的。"; 62 | Strings.OfficeOM.L_TooManyOptionalFunction = "参数列表中的多个可选函数"; 63 | Strings.OfficeOM.L_MissingRequiredArguments = "缺少某些必需的参数"; 64 | Strings.OfficeOM.L_NonUniformPartialGetNotSupported = "当强制类型表包含合并的单元格时,坐标参数不能与该表一起使用。"; 65 | Strings.OfficeOM.L_HostError = "主机错误"; 66 | Strings.OfficeOM.L_InvalidSelectionForBindingType = "不能通过当前所选内容和指定的绑定类型创建绑定。"; 67 | Strings.OfficeOM.L_TooManyOptionalObjects = "参数列表中的多个可选对象"; 68 | Strings.OfficeOM.L_EventHandlerRemovalFailed = "未能删除事件处理程序。"; 69 | Strings.OfficeOM.L_BindingToMultipleSelection = "不支持非连续选择。"; 70 | Strings.OfficeOM.L_DataReadError = "数据读取错误"; 71 | Strings.OfficeOM.L_InternalErrorDescription = "发生了内部错误。"; 72 | Strings.OfficeOM.L_InvalidDataFormat = "指定的数据对象的格式无效。"; 73 | Strings.OfficeOM.L_DataStale = "数据不是最新的"; 74 | Strings.OfficeOM.L_GetSelectionNotSupported = "不支持当前所选内容。"; 75 | Strings.OfficeOM.L_PermissionDenied = "权限被拒绝"; 76 | Strings.OfficeOM.L_InvalidDataObject = "无效的数据对象"; 77 | Strings.OfficeOM.L_SelectionCannotBound = "无法绑定到当前所选内容。"; 78 | Strings.OfficeOM.L_BadSelectorString = "传递到选择器中的字符串格式不正确或不受支持。"; 79 | Strings.OfficeOM.L_InvalidGetRowColumnCounts = "指定的 rowCount 或 columnCount 值无效。"; 80 | Strings.OfficeOM.L_OsfControlTypeNotSupported = "OsfControl 类型不受支持。"; 81 | Strings.OfficeOM.L_DataNotMatchSelection = "提供的数据对象与当前所选内容的形状或尺寸不兼容。"; 82 | Strings.OfficeOM.L_InternalError = "内部错误"; 83 | Strings.OfficeOM.L_NotSupported = "不支持函数 {0}。"; 84 | Strings.OfficeOM.L_CustomXmlNodeNotFound = "找不到指定的节点。"; 85 | Strings.OfficeOM.L_CoercionTypeNotMatchBinding = "指定的强制类型与此绑定类型不兼容。"; 86 | Strings.OfficeOM.L_TooManyArguments = "参数太多"; 87 | Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType = "此绑定类型上不支持操作。"; 88 | Strings.OfficeOM.L_InValidOptionalArgument = "可选参数无效"; 89 | Strings.OfficeOM.L_FileTypeNotSupported = "不支持指定的文件类型。"; 90 | Strings.OfficeOM.L_CallbackNotAFunction = "回调必须是函数类型,而其类型为 {0}。" 91 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-cn/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="指定的绑定类型与提供的已命名项目不兼容。";Strings.OfficeOM.L_EventHandlerNotExist="此对象不支持指定的事件类型。";Strings.OfficeOM.L_UnknownBindingType="不支持该绑定类型。";Strings.OfficeOM.L_InvalidNode="无效的节点";Strings.OfficeOM.L_NotImplemented="未实现函数 {0}。";Strings.OfficeOM.L_NoCapability="您没有足够的权限执行此操作。";Strings.OfficeOM.L_SettingsCannotSave="无法保存设置。";Strings.OfficeOM.L_InvalidBinding="无效的绑定";Strings.OfficeOM.L_BindingCreationError="绑定创建错误";Strings.OfficeOM.L_SelectionNotSupportCoercionType="当前所选内容与指定强制类型不兼容。";Strings.OfficeOM.L_InvalidBindingError="无效的绑定错误";Strings.OfficeOM.L_InvalidGetStartRowColumn="指定的 startRow 或 startColumn 值无效。";Strings.OfficeOM.L_CannotWriteToSelection="无法写入到当前所选内容。";Strings.OfficeOM.L_IndexOutOfRange="索引超出范围。";Strings.OfficeOM.L_SettingsStaleError="设置过期错误";Strings.OfficeOM.L_ReadSettingsError="读取设置错误";Strings.OfficeOM.L_CoercionTypeNotSupported="不支持指定的强制类型。";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="应用程序 {0} 不存在。Microsoft.Office.WebExtension.initialize(reason) 未被调用。";Strings.OfficeOM.L_OverwriteWorksheetData="设置操作失败,因为提供的数据对象将覆盖或移动数据。";Strings.OfficeOM.L_UnsupportedEnumeration="不受支持的枚举";Strings.OfficeOM.L_InvalidParameters="函数 {0} 包含无效参数。";Strings.OfficeOM.L_DataNotMatchCoercionType="指定的数据对象的类型与当前所选内容不兼容。";Strings.OfficeOM.L_UnsupportedEnumerationMessage="当前宿主应用程序中不支持枚举。";Strings.OfficeOM.L_InvalidCoercion="强制类型无效";Strings.OfficeOM.L_NotSupportedEventType="不支持指定的事件类型 {0}。";Strings.OfficeOM.L_UnsupportedDataObject="提供的数据对象不受支持。";Strings.OfficeOM.L_GetDataIsTooLarge="请求的数据集太大。";Strings.OfficeOM.L_AppNameNotExist="{0} 的应用程序名称不存在。";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="请进行选择。";Strings.OfficeOM.L_MultipleNamedItemFound="找到多个具有相同名称的对象。";Strings.OfficeOM.L_DataNotMatchBindingType="指定的数据对象与绑定类型不兼容。";Strings.OfficeOM.L_NotSupportedBindingType="不支持指定的绑定类型 {0}。";Strings.OfficeOM.L_InitializeNotReady="Office.js 尚未完全加载。请稍后再试或者确保在 Office.initialize 函数上添加初始化代码。";Strings.OfficeOM.L_ShuttingDown="操作失败,因为服务器上的数据不是最新的。";Strings.OfficeOM.L_OperationNotSupported="不支持此项操作。";Strings.OfficeOM.L_DocumentReadOnly="当前文档模式不允许所请求的操作。";Strings.OfficeOM.L_NamedItemNotFound="已命名的项目不存在。";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_SetDataIsTooLarge="指定的数据对象太大。";Strings.OfficeOM.L_DataWriteError="数据写入错误";Strings.OfficeOM.L_InvalidBindingOperation="无效的绑定操作";Strings.OfficeOM.L_FunctionCallFailed="函数 {0} 调用失败,错误代码: {1}。";Strings.OfficeOM.L_DataNotMatchBindingSize="提供的数据对象与当前所选内容的大小不匹配。";Strings.OfficeOM.L_SaveSettingsError="保存设置错误";Strings.OfficeOM.L_InvalidSetStartRowColumn="指定的 startRow 或 startColumn 值无效。";Strings.OfficeOM.L_InvalidFormat="无效的格式错误";Strings.OfficeOM.L_BindingNotExist="指定的绑定不存在。";Strings.OfficeOM.L_EventHandlerAdditionFailed="未能添加事件处理程序。";Strings.OfficeOM.L_SettingNameNotExist="指定的设置名称不存在。";Strings.OfficeOM.L_InvalidAPICall="无效的 API 调用";Strings.OfficeOM.L_EventRegistrationError="事件注册错误";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="当强制类型表包含合并的单元格时,坐标参数不能与该表一起使用。";Strings.OfficeOM.L_RedundantCallbackSpecification="不能在参数列表和可选对象中同时指定回调。";Strings.OfficeOM.L_CustomXmlError="自定义 XML 错误。";Strings.OfficeOM.L_SettingsAreStale="无法保存设置,因为它们不是最新的。";Strings.OfficeOM.L_TooManyOptionalFunction="参数列表中的多个可选函数";Strings.OfficeOM.L_MissingRequiredArguments="缺少某些必需的参数";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="当强制类型表包含合并的单元格时,坐标参数不能与该表一起使用。";Strings.OfficeOM.L_HostError="主机错误";Strings.OfficeOM.L_InvalidSelectionForBindingType="不能通过当前所选内容和指定的绑定类型创建绑定。";Strings.OfficeOM.L_TooManyOptionalObjects="参数列表中的多个可选对象";Strings.OfficeOM.L_EventHandlerRemovalFailed="未能删除事件处理程序。";Strings.OfficeOM.L_BindingToMultipleSelection="不支持非连续选择。";Strings.OfficeOM.L_DataReadError="数据读取错误";Strings.OfficeOM.L_InternalErrorDescription="发生了内部错误。";Strings.OfficeOM.L_InvalidDataFormat="指定的数据对象的格式无效。";Strings.OfficeOM.L_DataStale="数据不是最新的";Strings.OfficeOM.L_GetSelectionNotSupported="不支持当前所选内容。";Strings.OfficeOM.L_PermissionDenied="权限被拒绝";Strings.OfficeOM.L_InvalidDataObject="无效的数据对象";Strings.OfficeOM.L_SelectionCannotBound="无法绑定到当前所选内容。";Strings.OfficeOM.L_BadSelectorString="传递到选择器中的字符串格式不正确或不受支持。";Strings.OfficeOM.L_InvalidGetRowColumnCounts="指定的 rowCount 或 columnCount 值无效。";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl 类型不受支持。";Strings.OfficeOM.L_DataNotMatchSelection="提供的数据对象与当前所选内容的形状或尺寸不兼容。";Strings.OfficeOM.L_InternalError="内部错误";Strings.OfficeOM.L_NotSupported="不支持函数 {0}。";Strings.OfficeOM.L_CustomXmlNodeNotFound="找不到指定的节点。";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="指定的强制类型与此绑定类型不兼容。";Strings.OfficeOM.L_TooManyArguments="参数太多";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="此绑定类型上不支持操作。";Strings.OfficeOM.L_InValidOptionalArgument="可选参数无效";Strings.OfficeOM.L_FileTypeNotSupported="不支持指定的文件类型。";Strings.OfficeOM.L_CallbackNotAFunction="回调必须是函数类型,而其类型为 {0}。" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-cn/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-cn/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-tw/office_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("Strings"); 3 | Strings.OfficeOM = function() 4 | { 5 | }; 6 | Strings.OfficeOM.registerClass("Strings.OfficeOM"); 7 | Strings.OfficeOM.L_InvalidNamedItemForBindingType = "指定的繫結類型與提供的命名項目不相容。"; 8 | Strings.OfficeOM.L_EventHandlerNotExist = "此物件中不支援指定的事件類型。"; 9 | Strings.OfficeOM.L_UnknownBindingType = "不支援此繫結類型。"; 10 | Strings.OfficeOM.L_InvalidNode = "無效的節點"; 11 | Strings.OfficeOM.L_NotImplemented = "函數 {0} 未實作。"; 12 | Strings.OfficeOM.L_NoCapability = "您沒有足夠的權限可執行此動作。"; 13 | Strings.OfficeOM.L_SettingsCannotSave = "無法儲存設定。"; 14 | Strings.OfficeOM.L_InvalidBinding = "無效的繫結"; 15 | Strings.OfficeOM.L_BindingCreationError = "繫結建立錯誤"; 16 | Strings.OfficeOM.L_SelectionNotSupportCoercionType = "目前的選取範圍與指定的強制型轉類型不相容。"; 17 | Strings.OfficeOM.L_InvalidBindingError = "無效的繫結錯誤"; 18 | Strings.OfficeOM.L_InvalidGetStartRowColumn = "指定的 startRow 或 startColumn 值無效。"; 19 | Strings.OfficeOM.L_CannotWriteToSelection = "無法寫入至目前的選取範圍。"; 20 | Strings.OfficeOM.L_IndexOutOfRange = "索引超出範圍。"; 21 | Strings.OfficeOM.L_SettingsStaleError = "設定過時錯誤"; 22 | Strings.OfficeOM.L_ReadSettingsError = "讀取設定錯誤"; 23 | Strings.OfficeOM.L_CoercionTypeNotSupported = "不支援指定的強制型轉類型。"; 24 | Strings.OfficeOM.L_AppNotExistInitializeNotCalled = "應用程式 {0} 不存在。沒有呼叫 Microsoft.Office.WebExtension.initialize(reason)。"; 25 | Strings.OfficeOM.L_OverwriteWorksheetData = "設定作業失敗,因為提供的資料物件會覆寫資料或將資料移位。"; 26 | Strings.OfficeOM.L_UnsupportedEnumeration = "列舉不受支援"; 27 | Strings.OfficeOM.L_InvalidParameters = "函數 {0} 有無效的參數。"; 28 | Strings.OfficeOM.L_DataNotMatchCoercionType = "指定的資料物件類型與目前的選擇不相容。"; 29 | Strings.OfficeOM.L_UnsupportedEnumerationMessage = "目前的主機應用程式中不支援列舉。"; 30 | Strings.OfficeOM.L_InvalidCoercion = "無效的強制型轉類型"; 31 | Strings.OfficeOM.L_NotSupportedEventType = "不支援指定的事件類型 {0}。"; 32 | Strings.OfficeOM.L_UnsupportedDataObject = "提供的資料物件類型不受支援。"; 33 | Strings.OfficeOM.L_GetDataIsTooLarge = "要求的資料集太大。"; 34 | Strings.OfficeOM.L_AppNameNotExist = "{0} 的應用程式名稱不存在。"; 35 | Strings.OfficeOM.L_AddBindingFromPromptDefaultText = "請選擇一個選項。"; 36 | Strings.OfficeOM.L_MultipleNamedItemFound = "找到多個同名稱的物件。"; 37 | Strings.OfficeOM.L_DataNotMatchBindingType = "指定的資料物件與繫結類型不相容。"; 38 | Strings.OfficeOM.L_NotSupportedBindingType = "不支援指定的繫結類型 {0}。"; 39 | Strings.OfficeOM.L_InitializeNotReady = "Office.js 尚未完全載入。請稍後再試,或將您的初始化程式碼新增到 Office.initialize 函數。"; 40 | Strings.OfficeOM.L_ShuttingDown = "作業失敗,因為伺服器上的資料不是最新的。"; 41 | Strings.OfficeOM.L_OperationNotSupported = "不支援此作業。"; 42 | Strings.OfficeOM.L_DocumentReadOnly = "在目前的文件模式不允許執行要求的作業。"; 43 | Strings.OfficeOM.L_NamedItemNotFound = "命名項目不存在。"; 44 | Strings.OfficeOM.L_InvalidApiCallInContext = "目前的內容中發生無效的 API 呼叫。"; 45 | Strings.OfficeOM.L_SetDataIsTooLarge = "指定的資料物件太大。"; 46 | Strings.OfficeOM.L_DataWriteError = "資料寫入錯誤"; 47 | Strings.OfficeOM.L_InvalidBindingOperation = "無效的繫結作業"; 48 | Strings.OfficeOM.L_FunctionCallFailed = "函數 {0} 呼叫失敗,錯誤碼: {1}。"; 49 | Strings.OfficeOM.L_DataNotMatchBindingSize = "提供的資料物件與目前選擇的大小不符。"; 50 | Strings.OfficeOM.L_SaveSettingsError = "儲存設定錯誤"; 51 | Strings.OfficeOM.L_InvalidSetStartRowColumn = "指定的 startRow 或 startColumn 值無效。"; 52 | Strings.OfficeOM.L_InvalidFormat = "無效的格式錯誤"; 53 | Strings.OfficeOM.L_BindingNotExist = "指定的繫結不存在。"; 54 | Strings.OfficeOM.L_EventHandlerAdditionFailed = "無法新增事件處理常式。"; 55 | Strings.OfficeOM.L_SettingNameNotExist = "指定的設定名稱不存在。"; 56 | Strings.OfficeOM.L_InvalidAPICall = "無效的 API 呼叫"; 57 | Strings.OfficeOM.L_EventRegistrationError = "事件註冊錯誤"; 58 | Strings.OfficeOM.L_NonUniformPartialSetNotSupported = "表格含有合併儲存格時,座標參數不能與強制型轉類型表格共同使用。"; 59 | Strings.OfficeOM.L_RedundantCallbackSpecification = "回呼無法在引數清單和選用物件中指定。"; 60 | Strings.OfficeOM.L_CustomXmlError = "自訂 XML 錯誤。"; 61 | Strings.OfficeOM.L_SettingsAreStale = "設定無法儲存,因為不是最新的。"; 62 | Strings.OfficeOM.L_TooManyOptionalFunction = "參數清單中的多個選擇性函數"; 63 | Strings.OfficeOM.L_MissingRequiredArguments = "遺失部分必要引數"; 64 | Strings.OfficeOM.L_NonUniformPartialGetNotSupported = "表格含有合併儲存格時,座標參數不能與強制型轉類型表格共同使用。"; 65 | Strings.OfficeOM.L_HostError = "主機錯誤"; 66 | Strings.OfficeOM.L_InvalidSelectionForBindingType = "無法以目前的選取範圍與指定的繫結類型建立繫結。"; 67 | Strings.OfficeOM.L_TooManyOptionalObjects = "參數清單中的多個選擇性物件"; 68 | Strings.OfficeOM.L_EventHandlerRemovalFailed = "無法移除事件處理常式。"; 69 | Strings.OfficeOM.L_BindingToMultipleSelection = "不支援選取多個非連續項目。"; 70 | Strings.OfficeOM.L_DataReadError = "資料讀取錯誤"; 71 | Strings.OfficeOM.L_InternalErrorDescription = "發生內部錯誤。"; 72 | Strings.OfficeOM.L_InvalidDataFormat = "指定的資料物件格式無效。"; 73 | Strings.OfficeOM.L_DataStale = "資料不是最新的"; 74 | Strings.OfficeOM.L_GetSelectionNotSupported = "目前的選取範圍未受支援。"; 75 | Strings.OfficeOM.L_PermissionDenied = "權限遭拒"; 76 | Strings.OfficeOM.L_InvalidDataObject = "無效的資料物件"; 77 | Strings.OfficeOM.L_SelectionCannotBound = "無法繫結到目前的選取範圍。"; 78 | Strings.OfficeOM.L_BadSelectorString = "傳入選取器之字串的格式不適當或不受支援。"; 79 | Strings.OfficeOM.L_InvalidGetRowColumnCounts = "指定的 rowCount 或 columnCount 值無效。"; 80 | Strings.OfficeOM.L_OsfControlTypeNotSupported = "OsfControl 類型不受支援。"; 81 | Strings.OfficeOM.L_DataNotMatchSelection = "提供的資料物件與目前選取範圍的圖形或維度不相容。"; 82 | Strings.OfficeOM.L_InternalError = "內部錯誤"; 83 | Strings.OfficeOM.L_NotSupported = "不支援函數 {0}。"; 84 | Strings.OfficeOM.L_CustomXmlNodeNotFound = "找不到指定的節點。"; 85 | Strings.OfficeOM.L_CoercionTypeNotMatchBinding = "指定的強制型轉類型與此繫結類型不相容。"; 86 | Strings.OfficeOM.L_TooManyArguments = "引數過多"; 87 | Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType = "不支援此繫結類型的作業。"; 88 | Strings.OfficeOM.L_InValidOptionalArgument = "無效的選擇性引數"; 89 | Strings.OfficeOM.L_FileTypeNotSupported = "指定的檔案類型不受支援。"; 90 | Strings.OfficeOM.L_CallbackNotAFunction = "回撥必須是類型函數、曾是類型 {0}。" 91 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-tw/office_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidNamedItemForBindingType="指定的繫結類型與提供的命名項目不相容。";Strings.OfficeOM.L_EventHandlerNotExist="此物件中不支援指定的事件類型。";Strings.OfficeOM.L_UnknownBindingType="不支援此繫結類型。";Strings.OfficeOM.L_InvalidNode="無效的節點";Strings.OfficeOM.L_NotImplemented="函數 {0} 未實作。";Strings.OfficeOM.L_NoCapability="您沒有足夠的權限可執行此動作。";Strings.OfficeOM.L_SettingsCannotSave="無法儲存設定。";Strings.OfficeOM.L_InvalidBinding="無效的繫結";Strings.OfficeOM.L_BindingCreationError="繫結建立錯誤";Strings.OfficeOM.L_SelectionNotSupportCoercionType="目前的選取範圍與指定的強制型轉類型不相容。";Strings.OfficeOM.L_InvalidBindingError="無效的繫結錯誤";Strings.OfficeOM.L_InvalidGetStartRowColumn="指定的 startRow 或 startColumn 值無效。";Strings.OfficeOM.L_CannotWriteToSelection="無法寫入至目前的選取範圍。";Strings.OfficeOM.L_IndexOutOfRange="索引超出範圍。";Strings.OfficeOM.L_SettingsStaleError="設定過時錯誤";Strings.OfficeOM.L_ReadSettingsError="讀取設定錯誤";Strings.OfficeOM.L_CoercionTypeNotSupported="不支援指定的強制型轉類型。";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="應用程式 {0} 不存在。沒有呼叫 Microsoft.Office.WebExtension.initialize(reason)。";Strings.OfficeOM.L_OverwriteWorksheetData="設定作業失敗,因為提供的資料物件會覆寫資料或將資料移位。";Strings.OfficeOM.L_UnsupportedEnumeration="列舉不受支援";Strings.OfficeOM.L_InvalidParameters="函數 {0} 有無效的參數。";Strings.OfficeOM.L_DataNotMatchCoercionType="指定的資料物件類型與目前的選擇不相容。";Strings.OfficeOM.L_UnsupportedEnumerationMessage="目前的主機應用程式中不支援列舉。";Strings.OfficeOM.L_InvalidCoercion="無效的強制型轉類型";Strings.OfficeOM.L_NotSupportedEventType="不支援指定的事件類型 {0}。";Strings.OfficeOM.L_UnsupportedDataObject="提供的資料物件類型不受支援。";Strings.OfficeOM.L_GetDataIsTooLarge="要求的資料集太大。";Strings.OfficeOM.L_AppNameNotExist="{0} 的應用程式名稱不存在。";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="請選擇一個選項。";Strings.OfficeOM.L_MultipleNamedItemFound="找到多個同名稱的物件。";Strings.OfficeOM.L_DataNotMatchBindingType="指定的資料物件與繫結類型不相容。";Strings.OfficeOM.L_NotSupportedBindingType="不支援指定的繫結類型 {0}。";Strings.OfficeOM.L_InitializeNotReady="Office.js 尚未完全載入。請稍後再試,或將您的初始化程式碼新增到 Office.initialize 函數。";Strings.OfficeOM.L_ShuttingDown="作業失敗,因為伺服器上的資料不是最新的。";Strings.OfficeOM.L_OperationNotSupported="不支援此作業。";Strings.OfficeOM.L_DocumentReadOnly="在目前的文件模式不允許執行要求的作業。";Strings.OfficeOM.L_NamedItemNotFound="命名項目不存在。";Strings.OfficeOM.L_InvalidApiCallInContext="目前的內容中發生無效的 API 呼叫。";Strings.OfficeOM.L_SetDataIsTooLarge="指定的資料物件太大。";Strings.OfficeOM.L_DataWriteError="資料寫入錯誤";Strings.OfficeOM.L_InvalidBindingOperation="無效的繫結作業";Strings.OfficeOM.L_FunctionCallFailed="函數 {0} 呼叫失敗,錯誤碼: {1}。";Strings.OfficeOM.L_DataNotMatchBindingSize="提供的資料物件與目前選擇的大小不符。";Strings.OfficeOM.L_SaveSettingsError="儲存設定錯誤";Strings.OfficeOM.L_InvalidSetStartRowColumn="指定的 startRow 或 startColumn 值無效。";Strings.OfficeOM.L_InvalidFormat="無效的格式錯誤";Strings.OfficeOM.L_BindingNotExist="指定的繫結不存在。";Strings.OfficeOM.L_EventHandlerAdditionFailed="無法新增事件處理常式。";Strings.OfficeOM.L_SettingNameNotExist="指定的設定名稱不存在。";Strings.OfficeOM.L_InvalidAPICall="無效的 API 呼叫";Strings.OfficeOM.L_EventRegistrationError="事件註冊錯誤";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="表格含有合併儲存格時,座標參數不能與強制型轉類型表格共同使用。";Strings.OfficeOM.L_RedundantCallbackSpecification="回呼無法在引數清單和選用物件中指定。";Strings.OfficeOM.L_CustomXmlError="自訂 XML 錯誤。";Strings.OfficeOM.L_SettingsAreStale="設定無法儲存,因為不是最新的。";Strings.OfficeOM.L_TooManyOptionalFunction="參數清單中的多個選擇性函數";Strings.OfficeOM.L_MissingRequiredArguments="遺失部分必要引數";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="表格含有合併儲存格時,座標參數不能與強制型轉類型表格共同使用。";Strings.OfficeOM.L_HostError="主機錯誤";Strings.OfficeOM.L_InvalidSelectionForBindingType="無法以目前的選取範圍與指定的繫結類型建立繫結。";Strings.OfficeOM.L_TooManyOptionalObjects="參數清單中的多個選擇性物件";Strings.OfficeOM.L_EventHandlerRemovalFailed="無法移除事件處理常式。";Strings.OfficeOM.L_BindingToMultipleSelection="不支援選取多個非連續項目。";Strings.OfficeOM.L_DataReadError="資料讀取錯誤";Strings.OfficeOM.L_InternalErrorDescription="發生內部錯誤。";Strings.OfficeOM.L_InvalidDataFormat="指定的資料物件格式無效。";Strings.OfficeOM.L_DataStale="資料不是最新的";Strings.OfficeOM.L_GetSelectionNotSupported="目前的選取範圍未受支援。";Strings.OfficeOM.L_PermissionDenied="權限遭拒";Strings.OfficeOM.L_InvalidDataObject="無效的資料物件";Strings.OfficeOM.L_SelectionCannotBound="無法繫結到目前的選取範圍。";Strings.OfficeOM.L_BadSelectorString="傳入選取器之字串的格式不適當或不受支援。";Strings.OfficeOM.L_InvalidGetRowColumnCounts="指定的 rowCount 或 columnCount 值無效。";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl 類型不受支援。";Strings.OfficeOM.L_DataNotMatchSelection="提供的資料物件與目前選取範圍的圖形或維度不相容。";Strings.OfficeOM.L_InternalError="內部錯誤";Strings.OfficeOM.L_NotSupported="不支援函數 {0}。";Strings.OfficeOM.L_CustomXmlNodeNotFound="找不到指定的節點。";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="指定的強制型轉類型與此繫結類型不相容。";Strings.OfficeOM.L_TooManyArguments="引數過多";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="不支援此繫結類型的作業。";Strings.OfficeOM.L_InValidOptionalArgument="無效的選擇性引數";Strings.OfficeOM.L_FileTypeNotSupported="指定的檔案類型不受支援。";Strings.OfficeOM.L_CallbackNotAFunction="回撥必須是類型函數、曾是類型 {0}。" -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-tw/outlook_strings.debug.js: -------------------------------------------------------------------------------- 1 |  2 | Type.registerNamespace("_u"); 3 | _u.ExtensibilityStrings = function() 4 | { 5 | }; 6 | _u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings"); 7 | _u.ExtensibilityStrings.l_EwsRequestOversized_Text = "The request exceeds the 1 MB size limit. Please modify your EWS request."; 8 | _u.ExtensibilityStrings.l_OffsetNotfound_Text = "An offset for this time stamp couldn't be found."; 9 | _u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text = "Elevated permission is required to call the method: '{0}'."; 10 | _u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text = "Elevated permission is required to access protected members of the JavaScript API for Office."; 11 | _u.ExtensibilityStrings.l_InvalidEventDates_Text = "The end date occurs before the start date."; 12 | _u.ExtensibilityStrings.l_InvalidDate_Text = "The input doesn't resolve to a valid date."; 13 | _u.ExtensibilityStrings.l_InternalProtocolError_Text = "Internal protocol error: '{0}'." 14 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/Office/1.0/zh-tw/outlook_strings.js: -------------------------------------------------------------------------------- 1 | Type.registerNamespace("_u");_u.ExtensibilityStrings=function(){};_u.ExtensibilityStrings.registerClass("_u.ExtensibilityStrings");_u.ExtensibilityStrings.l_EwsRequestOversized_Text="The request exceeds the 1 MB size limit. Please modify your EWS request.";_u.ExtensibilityStrings.l_OffsetNotfound_Text="An offset for this time stamp couldn't be found.";_u.ExtensibilityStrings.l_ElevatedPermissionNeededForMethod_Text="Elevated permission is required to call the method: '{0}'.";_u.ExtensibilityStrings.l_ElevatedPermissionNeeded_Text="Elevated permission is required to access protected members of the JavaScript API for Office.";_u.ExtensibilityStrings.l_InvalidEventDates_Text="The end date occurs before the start date.";_u.ExtensibilityStrings.l_InvalidDate_Text="The input doesn't resolve to a valid date.";_u.ExtensibilityStrings.l_InternalProtocolError_Text="Internal protocol error: '{0}'." -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/_officeintellisense.js: -------------------------------------------------------------------------------- 1 | // This file is generated by Visual Studio to enable IntelliSense for the Office JavaScript Object Model. 2 | 3 | var Office = new function() { 4 | this._appContext = 2; 5 | this._showAll = true; 6 | this._setContext = { 7 | 8 | }; 9 | } 10 | 11 | // 1 Excel appContext = 001 12 | // 2 Word appContext = 010 13 | // 3 Word + Excel appContext = 011 14 | // 4 Project appContext = 100 15 | // 5 Project + Excel appContext = 101 16 | // 6 Project + Word appContext = 110 17 | // 7 Project + Word + Excel appContext = 111 18 | // 8 Outlook read-form appContext = 1000 19 | // 16 PowerPoint appContext = 10000 20 | // 17 PowerPoint + Excel appContext = 10001 21 | // 18 PowerPoint + Word appContext = 10010 22 | // 19 PowerPoint + Word + Excel appContext = 10011 23 | // 20 PowerPoint + Project appContext = 10100 24 | // 21 PowerPoint + Project + Excel appContext = 10101 25 | // 22 PowerPoint + Project + Word appContext = 10110 26 | // 23 PowerPoint + Project + Word + Excel appContext = 10111 27 | // 32 Outlook compose-form appContext = 100000 28 | // 40 Outlook read-form + Outlook compose form appContext = 101000 29 | // 64 Access appContext = 1000000 30 | // 65 Access + Excel appContext = 1000001 31 | // 66 Access + Word appContext = 1000010 32 | // 67 Access + Word + Excel appContext = 1000011 33 | // 68 Access + Project appContext = 1000100 34 | // 69 Access + Project + Excel appContext = 1000101 35 | // 70 Access + Project + Word appContext = 1000110 36 | // 71 Access + Project + Word + Excel appContext = 1000111 37 | // 80 Access + PowerPoint appContext = 1010000 38 | // 81 Access + PowerPoint + Excel appContext = 1010001 39 | // 82 Access + PowerPoint + Word appContext = 1010010 40 | // 83 Access + PowerPoint + Word + Excel appContext = 1010011 41 | // 84 Access + PowerPoint + Project appContext = 1010100 42 | // 85 Access + PowerPoint + Project + Excel appContext = 1010101 43 | // 86 Access + PowerPoint + Project + Word appContext = 1010110 44 | // 87 Access + PowerPoint + Project + Word + Excel appContext = 1010111 45 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/Scripts/_references.js -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/fonts/office365icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/fonts/office365icons.eot -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/fonts/office365icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/fonts/office365icons.ttf -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/fonts/office365icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/C#/LoadingAndWritingOOXMLWeb/fonts/office365icons.woff -------------------------------------------------------------------------------- /C#/LoadingAndWritingOOXMLWeb/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Microsoft 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [MOVED] Word-Add-in-Load-and-write-Open-XML 2 | 3 | **Note:** This sample was moved to the [PnP-OfficeAddins repo](https://github.com/OfficeDev/PnP-OfficeAddins) and is located at https://github.com/OfficeDev/PnP-OfficeAddins/tree/main/Samples/word-add-in-load-and-write-open-xml 4 | 5 | This repo is archived and no longer actively maintained. Security vulnerabilities may exist in the project, or its dependencies. If you plan to reuse or run any code from this repo, be sure to perform appropriate security checks on the code or dependencies first. Do not use this project as the starting point of a production Office Add-in. Always start your production code by using the Office/SharePoint development workload in Visual Studio, or the [Yeoman generator for Office Add-ins](https://github.com/OfficeDev/generator-office), and follow security best practices as you develop the add-in. 6 | 7 | This sample add-in shows you how to add a variety of rich content types to a Word document using the setSelectedDataAsync method with ooxml coercion type. The app also gives you the ability to show the Office Open XML markup for each sample content type right on the page. 8 | 9 | **Description of the sample** 10 | 11 | The add-in initializes in a blank Word document. You choose an option to insert the content or its markup at the selection point in the active Word document and then click the object type you want from the following options: 12 | 13 | * formatted text 14 | * styled text 15 | * a simple image 16 | * a formatted image 17 | * a text box 18 | * an Office drawing shape 19 | * a content control 20 | * a formatted table 21 | * a styled table 22 | * a SmartArt diagram 23 | * a chart 24 | 25 | Figure 1 shows how the task pane for the sample add-in appears when the solution starts. 26 | 27 | ![Figure 1. The Loading and Writing OOXML task pane](/description/9a7aa2da-4f99-4519-8cd1-f341060ff9beimage.png) 28 | 29 | **Note** 30 | 31 | When you choose the option to see the markup for a selected type of content, what you're seeing is the Office Open XML edited to remove unnecessary markup, along with a few tips for additional guidance. You can also review any piece of markup used in the add-in (with formatting to make it easier to navigate) directly in the Visual Studio solution. For further help interpreting, editing, and simplifying your work with Office Open XML for Word add-ins, see Creating Better Add-ins for Word with Office Open XML. 32 | 33 | Figures 2a - 2b show how the document surface and task pane appear after extracting Office Open XML from the selection. 34 | 35 | ![Figure 2a. Document surface appearance after using the 'Get…' button to extract Office Open XML for selected content](/description/70dee213-4853-47b2-abcf-55a982abb2c4image.png) 36 | 37 | ![Figure 2b. Task pane appearance after using the 'Get…' button to extract Office Open XML for selected content](/description/image.png) 38 | 39 | 40 | 41 | **Prerequisites** 42 | 43 | This sample requires: 44 | 45 | * Visual Studio 2012 46 | * Office 2013 tools for Visual Studio 2012 47 | * Word 2013 48 | 49 | **Key components of the sample** 50 | 51 | The sample app contains: 52 | 53 | * The LoadingAndWritingOOXML project, which contains: 54 | * The LoadingAndWritingOOXML.xml manifest file 55 | * The LoadingAndWritingOOXML Web project, which contains multiple template files 56 | * However, the files that have been developed as part of this sample solution include: 57 | * LoadingAndWritingOOXML.html (in the App folder, LoadingAndWritingOOXML subfolder). This contains the HTML user interface that is displayed in the task pane. It consists of two HTML radio buttons for choosing the option to insert a selected content type or display its markup in Word, several buttons for selecting a content type, and instructional text 58 | * LoadingAndWritingOOXML.js (in the same folder as above). This script file contains code that runs when the app is loaded. This startup wires up the Click event handlers for the eleven buttons in LoadingAndWritingOOXML.html that represent different content types. The handler in the JavaScript connects each button to the correct function based on the actively-selected radio button, to either write the content or its markup into the document. 59 | * Several XML files containing the markup for each of the content types you can insert via the app. These are located in the folder named OOXMLSamples. (Note that some content types have a separate XML file for the markup when inserting the object vs. displaying the markup on the page because chunks of binary data where applicable (i.e., for pictures and charts) are removed from the markup displayed on the page for ease of review. To learn more about the binary data contained in some types of Office Open XML markup, see the previously-referenced article Creating Better Add-ins for Word with Office Open XML 60 | 61 | All other files are automatically provided by the Visual Studio project template for Add-ins for Office, and they have not been modified in the development of this sample app. 62 | 63 | **Configure the sample** 64 | 65 | To configure the sample, open the LoadingAndWritingOOXML.sln file with Visual Studio. No other configuration is necessary. 66 | 67 | **Build the sample** 68 | 69 | To build the sample, choose the Ctrl+Shift+B keys. 70 | 71 | **Run and test the sample** 72 | 73 | To run the sample, choose the F5 key. 74 | 75 | **Troubleshooting** 76 | 77 | If the app fails to respond as described, try reloading it. (In the task pane, choose the down arrow, and then choose Reload.) 78 | 79 | **Change log** 80 | 81 | * First release: Aug 2013. 82 | * GitHub release: Aug 2015. 83 | 84 | **Related content** 85 | 86 | * [Build Add-ins for Office](http://msdn.microsoft.com/en-us/library/office/jj220060.aspx) 87 | * [Standard ECMA-376: Office Open XML File Formats](http://www.ecma-international.org/publications/standards/Ecma-376.htm) 88 | * [Creating Better Apps for Word with Office Open XML](http://msdn.microsoft.com/EN-US/library/office/apps/dn423225.aspx) 89 | 90 | 91 | 92 | 93 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information, see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. 94 | -------------------------------------------------------------------------------- /Word-Add-in-Load-and-write-Open-XML.yml: -------------------------------------------------------------------------------- 1 | ### YamlMime:Sample 2 | sample: 3 | - name: 'Word add-in: Add rich content and write Open XML' 4 | path: '' 5 | description: This sample add-in shows you how to add a variety of rich content types to a Word document using the setSelectedDataAsync method with ooxml coercion type. The app also gives you the ability to show the Office Open XML markup for each sample content type right on the page. 6 | readme: '' 7 | generateZip: FALSE 8 | isLive: TRUE 9 | technologies: 10 | - Office Add-ins 11 | azureDeploy: '' 12 | author: JohnAustin-MSFT 13 | platforms: [] 14 | languages: 15 | - JavaScript 16 | extensions: 17 | products: 18 | - Word 19 | scenarios: [] 20 | -------------------------------------------------------------------------------- /description/04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/description/04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css -------------------------------------------------------------------------------- /description/70dee213-4853-47b2-abcf-55a982abb2c4image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/description/70dee213-4853-47b2-abcf-55a982abb2c4image.png -------------------------------------------------------------------------------- /description/9a7aa2da-4f99-4519-8cd1-f341060ff9beimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/description/9a7aa2da-4f99-4519-8cd1-f341060ff9beimage.png -------------------------------------------------------------------------------- /description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/description/Combined.css -------------------------------------------------------------------------------- /description/Layout.css: -------------------------------------------------------------------------------- 1 | #container { 2 | min-height: 768px; 3 | } 4 | 5 | #leftSubHeaderContainer 6 | { 7 | margin-top:20px; 8 | } 9 | 10 | #title h1 11 | { 12 | font-size:25px; 13 | } 14 | 15 | #subtitle h2 16 | { 17 | font-size:15px; 18 | } 19 | 20 | #subtitle 21 | { 22 | margin-left:10px; 23 | } 24 | 25 | 26 | #formContainer 27 | { 28 | margin-left:10px; 29 | margin-top:30px; 30 | } 31 | 32 | .formLabel 33 | { 34 | float:left; 35 | width: 250px; 36 | } 37 | 38 | .formRow 39 | { 40 | clear:both; 41 | padding: 10px 0 10px 10px; 42 | } 43 | 44 | 45 | .formRecaptchaRow 46 | { 47 | clear:both; 48 | float:left; 49 | margin-top:20px; 50 | margin-left:10px; 51 | margin-bottom:20px; 52 | } 53 | 54 | .formSubmitRow 55 | { 56 | clear:both; 57 | margin-top:20px; 58 | margin-left:300px; 59 | margin-bottom:20px; 60 | } 61 | 62 | .formControl { 63 | width:300px; 64 | float:left; 65 | } 66 | .formControl .textInput 67 | { 68 | width:300px; 69 | } 70 | 71 | .formControl textarea 72 | { 73 | width:425px; 74 | height:100px; 75 | } 76 | 77 | .formControl .tag 78 | { 79 | width:425px; 80 | } 81 | 82 | .formControl .richText 83 | { 84 | margin-top:10px; 85 | width:500px; 86 | height:440px; 87 | } 88 | 89 | .formWideLabel 90 | { 91 | width:500px; 92 | } 93 | 94 | .formBigLabel 95 | { 96 | margin-top:20px; 97 | font-size:20px; 98 | } 99 | 100 | .formControlBelow 101 | { 102 | clear:both; 103 | margin-top:10px; 104 | width:500px; 105 | } 106 | 107 | .required 108 | { 109 | color: Red; 110 | } 111 | .helpText 112 | { 113 | color: #9D9D9D; 114 | font-style: italic; 115 | } 116 | 117 | #agreementSummary 118 | { 119 | clear:both; 120 | margin-top:10px; 121 | width:800px; 122 | } 123 | 124 | .field-validation-error, .validation-summary-errors 125 | { 126 | color: #FF0000; 127 | font-weight: bold; 128 | } 129 | 130 | .tinyMCETemplate { 131 | position: relative; 132 | left: 400px; 133 | width: 300px; 134 | max-height: 300px; 135 | overflow: auto; 136 | } 137 | 138 | .IE6 .tinyMCETemplate { 139 | left: 25px; 140 | } 141 | 142 | .ownerBar { 143 | padding: 5px; 144 | } 145 | .ownerBar .ownerBarOptions { 146 | float: right; 147 | } 148 | -------------------------------------------------------------------------------- /description/iframedescription.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #000000; 3 | font-family: 'Segoe UI',Verdana,Arial; 4 | font-size: 0.813em; 5 | font-style: normal; 6 | word-wrap: break-word; 7 | } 8 | 9 | /*BEGIN HEADERS*/ 10 | .h1, h1 { 11 | color: #3A3E43; 12 | font-family: 'Segoe UI',Verdana,Arial; 13 | font-size: 1.4em; 14 | font-weight: bold; 15 | margin: 0; 16 | } 17 | 18 | .h2, h2 { 19 | color: #3A3E43; 20 | font-family: 'Segoe UI',Verdana,Arial; 21 | font-size: 1.2em; 22 | font-weight: bold; 23 | } 24 | .h3, h3 { 25 | color: #3A3E43; 26 | font-family: 'Segoe UI',Verdana,Arial; 27 | font-size: 1.077em; 28 | font-weight: bold; 29 | } 30 | .h4, h4 { 31 | color: #3A3E43; 32 | font-family: 'Segoe UI',Verdana,Arial; 33 | font-size: 1em; 34 | font-weight: bold; 35 | } 36 | h4.subHeading { 37 | margin-bottom: 7px; 38 | margin-top: 13px; 39 | } 40 | /*END HEADERS*/ 41 | 42 | /*BEGIN LINKS*/ 43 | a:link { 44 | color: #00749E; 45 | text-decoration: none; 46 | } 47 | a:hover { 48 | text-decoration: underline; 49 | } 50 | a:visited { 51 | color: #960BB4; 52 | text-decoration: none; 53 | } 54 | a:focus { 55 | outline: 1px dotted #000000; 56 | } 57 | 58 | a.libraryLink:link { 59 | text-decoration:none; 60 | border-bottom:1px dotted; 61 | } 62 | 63 | /*END LINKS*/ 64 | 65 | /*BEGIN IMAGES*/ 66 | img { 67 | border: 0 none; 68 | } 69 | /*END IMAGES*/ 70 | 71 | /*BEGIN TABLE*/ 72 | .title table { 73 | color: #000000; 74 | font-family: 'Segoe UI',Verdana,Arial; 75 | font-size: 1.077em; 76 | font-style: normal; 77 | } 78 | table { 79 | border-collapse: collapse; 80 | } 81 | 82 | table, table th, table td { 83 | border:1px solid #BBBBBB; 84 | } 85 | /*END TABLE*/ 86 | 87 | /*BEGIN LIST*/ 88 | ul { 89 | list-style-type: disc; 90 | margin-left:40px; 91 | padding-left: 0; 92 | } 93 | ul li { 94 | padding-bottom: 10px; 95 | } 96 | ol { 97 | margin-left:40px; 98 | padding-left: 0; 99 | } 100 | ol li { 101 | padding-bottom: 10px; 102 | } 103 | /*END LIST*/ 104 | 105 | .scriptcode { 106 | position: relative; 107 | padding: 8px 8px 8px 8px; 108 | background: #FFFFFF; 109 | font-size: 12px; 110 | line-height: 125%; 111 | font-weight:normal; 112 | } 113 | .scriptcode pre 114 | { 115 | white-space: pre-wrap !important; /* css-3 */ 116 | word-wrap: break-word !important; /* Internet Explorer 5.5+ */ 117 | margin:0 0 10px 0 !important; 118 | padding: 10px; 119 | border-top: solid 2px #D0D2D2; 120 | border-bottom: solid 2px #D0D2D2; 121 | border-left: solid 1px #D0D2D2; 122 | border-right: solid 1px #D0D2D2; 123 | } 124 | 125 | .scriptcode .title { 126 | color:#E66A38; 127 | font-size: 12px; 128 | font-weight:bold; 129 | margin: 0; 130 | min-height: 23px; 131 | } 132 | .scriptcode .title > span:first-child { 133 | border-left: solid 1px #D0D2D2; 134 | } 135 | .scriptcode .title > span { 136 | padding: 4px 8px 4px 8px; 137 | display: inline-block; 138 | border-top: 1px solid #D0D2D2; 139 | border-right: 1px solid #D0D2D2; 140 | border-collapse: collapse; 141 | text-align: center; 142 | background: white; 143 | } 144 | .scriptcode .title > span.otherTab { 145 | color: #1364C4; 146 | background: #EFF5FF; 147 | cursor: pointer; 148 | } 149 | 150 | .scriptcode .hidden { 151 | display: none !important; 152 | visibility: hidden !important; 153 | } 154 | 155 | .scriptcode .copyCode { 156 | padding: 8px 2px 0 2px !important; 157 | margin-right: 15px; 158 | position: absolute !important; 159 | right: 0 !important; 160 | top: 17px; 161 | display:block !important; 162 | background: #FFFFFF; 163 | } 164 | .scriptcode .pluginLinkHolder { 165 | display: none; 166 | } 167 | .scriptcode .pluginEditHolderLink { 168 | display: none; 169 | } 170 | 171 | .Opera wbr 172 | { 173 | display: inline-block; 174 | } 175 | 176 | .IE9 wbr:after 177 | { 178 | content: "\00200B"; 179 | } 180 | -------------------------------------------------------------------------------- /description/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Load-and-write-Open-XML/42c4934a3d6b8fe1e45cf01d073c070a719b8381/description/image.png -------------------------------------------------------------------------------- /description/offline.js: -------------------------------------------------------------------------------- 1 | var Galleries = Galleries || { }; 2 | 3 | (function() { 4 | 5 | function findElem(parent, tagName, className) { 6 | var elemToSearch = (parent) ? parent : document.body; 7 | var tagMatch = elemToSearch.getElementsByTagName(tagName); 8 | var evaluator = function(elem) { 9 | return (className) ? (elem.className.indexOf(className) > -1) : true; 10 | }; 11 | 12 | return findArrayElem(tagMatch, evaluator); 13 | } 14 | 15 | function findArrayElem(array, evaluator) { 16 | var newArray = new Array(); 17 | for (var count = 0; count < array.length; count++) { 18 | if (evaluator(array[count])) { 19 | newArray.push(array[count]); 20 | } 21 | } 22 | return newArray; 23 | } 24 | 25 | function iterateElem(elems, delegate) { 26 | for(var count = 0; count < elems.length; count++) { 27 | delegate(count, elems[count]); 28 | } 29 | } 30 | 31 | function isHidden(elem) { 32 | return (elem.offsetHeight === 0 && elem.offsetWidth === 0) || elem.style && elem.style.display === "none"; 33 | } 34 | 35 | function onWindowLoad(callback) { 36 | attachEventHandler(null, 'load', callback); 37 | } 38 | 39 | function attachEventHandler(elem, event, callback) { 40 | var elemToAttach = (elem) ? elem : window; 41 | if (document.addEventListener) { 42 | elemToAttach.addEventListener(event, callback, false); 43 | } else if ( document.attachEvent ) { 44 | elemToAttach.attachEvent('on' + event, callback); 45 | } 46 | } 47 | 48 | Galleries.findElem = findElem; 49 | Galleries.iterateElem = iterateElem; 50 | Galleries.attachEventHandler = attachEventHandler; 51 | Galleries.onWindowLoad = onWindowLoad; 52 | })(); --------------------------------------------------------------------------------