Continue editing pages for mobile apps

This commit is contained in:
Svetlana Maleeva 2022-07-28 16:50:13 +03:00
parent 15aa883871
commit e5a6b5081f
20 changed files with 162 additions and 361 deletions

View File

@ -2,15 +2,50 @@
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
string CurCulture2ISOName = System.Threading.Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName;
string LocalizedPageTitle = "",
LocalizedMetaDescription = "",
LocalizedMetaKeyWords = "";
protected override void Init()
{
PageTitle = PageCaption = "Document Editor web version for Android";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
switch (CurCulture2ISOName)
{
case "en":
default:
LocalizedPageTitle = "Document Editor web version for Android";
LocalizedMetaDescription = "Document Editor web version for Android";
break;
case "de":
LocalizedPageTitle = "Dokumenteneditor Web-Version für Android";
LocalizedMetaDescription = "Dokumenteneditor Web-Version für Android";
break;
case "es":
LocalizedPageTitle = "Versión web del Editor de Documentos para Android";
LocalizedMetaDescription = "Versión web del Editor de Documentos para Android";
break;
case "fr":
LocalizedPageTitle = "Version web de Document Editor pour les appareils Android";
LocalizedMetaDescription = "Version web de Document Editor pour les appareils Android";
break;
case "ru":
LocalizedPageTitle = "Веб-версия Редактора документов для Android";
LocalizedMetaDescription = "Веб-версия Редактора документов для Android";
break;
}
PageTitle = PageCaption = LocalizedPageTitle;
MetaKeyWords = LocalizedMetaKeyWords;
MetaDescription = LocalizedMetaDescription;
}
//public partial class _Default : BasePage
//{
// protected void Page_Load(object sender, EventArgs e)
// {
// }
//}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Dokumenteneditor Web-Version für Android";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/Android/AndrWebDE/AndrWebDETableOfContents/AndrWebDETableOfContents.ascx" />
</div>

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Versión web del Editor de Documentos para Android";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mobile_documents/0022_mobile_documents.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/Android/AndrWebDE/AndrWebDETableOfContents/AndrWebDETableOfContents.ascx" />
</div>

View File

@ -1,22 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Version web de Document Editor pour les appareils Android";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="lecture automatique des diapositives">
<cc:LocalizeContent runat="Serveur" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs/0022_mob_docs.ascx" />
</div>
</div>--%> <cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/Android/AndrWebDE/AndrWebDETableOfContents/AndrWebDETableOfContents.ascx" />
</div>

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Веб-версия Редактора документов для Android";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/Android/AndrWebDE/AndrWebDETableOfContents/AndrWebDETableOfContents.ascx" />
</div>

View File

@ -2,13 +2,49 @@
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
string CurCulture2ISOName = System.Threading.Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName;
string LocalizedPageTitle = "",
LocalizedMetaDescription = "",
LocalizedMetaKeyWords = "";
protected override void Init()
{
PageTitle = PageCaption = "Document Editor web version for iOS";
MetaKeyWords = "";
MetaDescription = "";
switch (CurCulture2ISOName)
{
case "en":
default:
LocalizedPageTitle = "Document Editor web version for iOS";
LocalizedMetaDescription = "Document Editor web version for iOS";
break;
case "de":
LocalizedPageTitle = "Dokumenteneditor Webversion für iOS";
LocalizedMetaDescription = "Dokumenteneditor Webversion für iOS";
break;
case "es":
LocalizedPageTitle = "Versión web del Editor de Documentos para iOS";
LocalizedMetaDescription = "Versión web del Editor de Documentos para iOS";
break;
case "fr":
LocalizedPageTitle = "Version web de Document Editor pour les appareils iOS";
LocalizedMetaDescription = "Version web de Document Editor pour les appareils iOS";
break;
case "ru":
LocalizedPageTitle = "Веб-версия Редактора документов для iOS";
LocalizedMetaDescription = "Веб-версия Редактора документов для iOS";
break;
}
PageTitle = PageCaption = LocalizedPageTitle;
MetaKeyWords = LocalizedMetaKeyWords;
MetaDescription = LocalizedMetaDescription;
}
//public partial class _Default : BasePage
//{
// protected void Page_Load(object sender, EventArgs e)
// {
// }
//}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Dokumenteneditor Webversion für iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebDE/iOSWebDETableOfContents/iOSWebDETableOfContents.ascx" />
</div>

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Versión web del Editor de Documentos para iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebDE/iOSWebDETableOfContents/iOSWebDETableOfContents.ascx" />
</div>

View File

@ -1,22 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Version web de Document Editor pour les appareils iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="lecture automatique des diapositives">
<cc:LocalizeContent runat="Serveur" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs/0022_mob_docs.ascx" />
</div>
</div>--%><cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebDE/iOSWebDETableOfContents/iOSWebDETableOfContents.ascx" />
</div>

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Веб-версия Редактора документов для iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebDE/iOSWebDETableOfContents/iOSWebDETableOfContents.ascx" />
</div>

View File

@ -2,15 +2,50 @@
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
string CurCulture2ISOName = System.Threading.Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName;
string LocalizedPageTitle = "",
LocalizedMetaDescription = "",
LocalizedMetaKeyWords = "";
protected override void Init()
{
PageTitle = PageCaption = "Presentation Editor web version for iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
switch (CurCulture2ISOName)
{
case "en":
default:
LocalizedPageTitle = "Presentation Editor web version for iOS";
LocalizedMetaDescription = "Presentation Editor web version for iOS";
break;
case "de":
LocalizedPageTitle = "Präsentationseditor für iOS - Web-Version";
LocalizedMetaDescription = "Präsentationseditor für iOS - Web-Version";
break;
case "es":
LocalizedPageTitle = "Versión web del Editor de Presentaciones para iOS";
LocalizedMetaDescription = "Versión web del Editor de Presentaciones para iOS";
break;
case "fr":
LocalizedPageTitle = "Version web de Presentation Editor pour les appareils iOS";
LocalizedMetaDescription = "Version web de Presentation Editor pour les appareils iOS";
break;
case "ru":
LocalizedPageTitle = "Веб-версия Редактора презентаций для iOS";
LocalizedMetaDescription = "Веб-версия Редактора презентаций для iOS";
break;
}
PageTitle = PageCaption = LocalizedPageTitle;
MetaKeyWords = LocalizedMetaKeyWords;
MetaDescription = LocalizedMetaDescription;
}
//public partial class _Default : BasePage
//{
// protected void Page_Load(object sender, EventArgs e)
// {
// }
//}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebPE/iOSWebPETableOfContents/iOSWebPETableOfContents.ascx" />

View File

@ -1,17 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Präsentationseditor für iOS - Web-Version";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebPE/iOSWebPETableOfContents/iOSWebPETableOfContents.ascx" />
</div>

View File

@ -1,17 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Versión web del Editor de Presentaciones para iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebPE/iOSWebPETableOfContents/iOSWebPETableOfContents.ascx" />
</div>

View File

@ -1,17 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Version web de Presentation Editor pour les appareils iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebPE/iOSWebPETableOfContents/iOSWebPETableOfContents.ascx" />
</div>

View File

@ -1,17 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Веб-версия Редактора презентаций для iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebPE/iOSWebPETableOfContents/iOSWebPETableOfContents.ascx" />
</div>

View File

@ -2,13 +2,49 @@
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
string CurCulture2ISOName = System.Threading.Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName;
string LocalizedPageTitle = "",
LocalizedMetaDescription = "",
LocalizedMetaKeyWords = "";
protected override void Init()
{
PageTitle = PageCaption = "Spreadsheet Editor web version for iOS";
MetaKeyWords = "";
MetaDescription = "";
switch (CurCulture2ISOName)
{
case "en":
default:
LocalizedPageTitle = "Spreadsheet Editor web version for iOS";
LocalizedMetaDescription = "Spreadsheet Editor web version for iOS";
break;
case "de":
LocalizedPageTitle = "Tabellenkalkulation für iOS - Webversion";
LocalizedMetaDescription = "Tabellenkalkulation für iOS - Webversion";
break;
case "es":
LocalizedPageTitle = "Versión web del editor de hojas de cálculo para iOS";
LocalizedMetaDescription = "Versión web del editor de hojas de cálculo para iOS";
break;
case "fr":
LocalizedPageTitle = "Version web de Spradsheet Editor pour les appareils iOS";
LocalizedMetaDescription = "Version web de Spradsheet Editor pour les appareils iOS";
break;
case "ru":
LocalizedPageTitle = "Веб-версия Редактора таблиц для iOS";
LocalizedMetaDescription = "Веб-версия Редактора таблиц для iOS";
break;
}
PageTitle = PageCaption = LocalizedPageTitle;
MetaKeyWords = LocalizedMetaKeyWords;
MetaDescription = LocalizedMetaDescription;
}
//public partial class _Default : BasePage
//{
// protected void Page_Load(object sender, EventArgs e)
// {
// }
//}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Tabellenkalkulation für iOS - Webversion";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2>Watch Video</h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebSE/iOSWebSETableOfContents/iOSWebSETableOfContents.ascx" />
</div>

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Versión web del editor de hojas de cálculo para iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2>Vea el vídeo</h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebSE/iOSWebSETableOfContents/iOSWebSETableOfContents.ascx" />
</div>

View File

@ -1,22 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Version web de Spradsheet Editor pour les appareils iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2>Watch Video</h2>
<div class="lecture automatique des diapositives">
<cc:LocalizeContent runat="Serveur" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs/0022_mob_docs.ascx" />
</div>
</div>--%><cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebSE/iOSWebSETableOfContents/iOSWebSETableOfContents.ascx" />
</div>

View File

@ -1,23 +0,0 @@
<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Веб-версия Редактора таблиц для iOS";
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<div class="MainHelpCenter PageGuides MobileApps TableOfContentsPage">
<h1><%= PageTitle%></h1>
<%--<div class="watchvideo_block">
<h2>Watch Video</h2>
<div class="slider autoplay">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0022_mob_docs.ascx" />
</div>
</div>--%>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/MobApps/MobDocs/MobWebEditors/iOS/iOSWebSE/iOSWebSETableOfContents/iOSWebSETableOfContents.ascx" />
</div>