Merge remote-tracking branch 'upstream/develop' into new_branch_20_09_2018
This commit is contained in:
commit
6f18992bcc
@ -61,7 +61,7 @@ LanguageMustNotBeSameThanClonedPage=You clone a page as a translation. The langu
|
||||
ParentPageId=Parent page ID
|
||||
WebsiteId=Website ID
|
||||
CreateByFetchingExternalPage=Create page/container by fetching page from external URL...
|
||||
OrEnterPageInfoManually=Or create empty page from scratch...
|
||||
OrEnterPageInfoManually=Or create page from scratch or from a page template...
|
||||
FetchAndCreate=Fetch and Create
|
||||
ExportSite=Export site
|
||||
ImportSite=Import site
|
||||
@ -78,7 +78,7 @@ AnotherContainer=Another container
|
||||
WEBSITE_USE_WEBSITE_ACCOUNTS=Enable the web site account table
|
||||
WEBSITE_USE_WEBSITE_ACCOUNTSTooltip=Enable the table to store web site accounts (login/pass) for each website / thirdparty
|
||||
YouMustDefineTheHomePage=You must first define the default Home page
|
||||
OnlyEditionOfSourceForGrabbedContentFuture=Note: only edition of HTML source will be possible when a page content is initialized by grabbing it from an external page (WYSIWYG editor will not be available)
|
||||
OnlyEditionOfSourceForGrabbedContentFuture=Warning: Creating a web page by importing an external web page is reserved to experienced user. Depending on the complexity of source page, the result of importation may differs once imported from original. Also if the source page use common CSS style or not compatible javascript, it may break the look or features of the Web site editor when working on this page. This method is faster way to have a page but it is recommanded to create your new page from scratch or from a suggested page template.<br>Note also that only edition of HTML source will be possible when a page content has been initialized by grabbing it from an external page ("Online" editor will NOT be available)
|
||||
OnlyEditionOfSourceForGrabbedContent=Only edition of HTML source is possible when content was grabbed from an external site
|
||||
GrabImagesInto=Grab also images found into css and page.
|
||||
ImagesShouldBeSavedInto=Images should be saved into directory
|
||||
@ -89,4 +89,5 @@ CorporateHomePage=Corporate Home page
|
||||
EmptyPage=Empty page
|
||||
ExternalURLMustStartWithHttp=External URL must start with http:// or https://
|
||||
ZipOfWebsitePackageToImport=Zip file of website package
|
||||
ShowSubcontainers=Show included containers
|
||||
ShowSubcontainers=Show included containers
|
||||
InternalURLOfPage=Internal URL of page
|
||||
@ -1855,6 +1855,7 @@ form#login {
|
||||
max-width: 530px;
|
||||
color: #eee !important;
|
||||
padding-bottom: 20px;
|
||||
text-shadow: 1px 1px #444;
|
||||
}
|
||||
.login_table label {
|
||||
text-shadow: 1px 1px 1px #FFF;
|
||||
@ -1899,7 +1900,7 @@ if (! empty($conf->global->MAIN_LOGIN_BACKGROUND)) {
|
||||
margin: 8px;
|
||||
}
|
||||
.login_table .tdinputlogin {
|
||||
background-color: #fff;
|
||||
background-color: transparent;
|
||||
/* border: 2px solid #ccc; */
|
||||
min-width: 220px;
|
||||
border-radius: 2px;
|
||||
|
||||
@ -2319,6 +2319,7 @@ if ($action == 'editmeta' || $action == 'createcontainer')
|
||||
print '<tr><td class="titlefield">';
|
||||
print $langs->trans("URL");
|
||||
print '</td><td>';
|
||||
print info_admin($langs->trans("OnlyEditionOfSourceForGrabbedContentFuture"), 0, 0, 'warning');
|
||||
print '<input class="flat minwidth300" type="text" name="externalurl" value="'.dol_escape_htmltag(GETPOST('externalurl','alpha')).'" placeholder="https://externalsite/pagetofetch"> ';
|
||||
print '<input class="flat paddingtop" type="checkbox" name="grabimages" value="1" checked="checked"> '.$langs->trans("GrabImagesInto");
|
||||
print ' ';
|
||||
@ -2327,7 +2328,6 @@ if ($action == 'editmeta' || $action == 'createcontainer')
|
||||
print $form->selectarray('grabimagesinto', $arraygrabimagesinto, GETPOSTISSET('grabimagesinto')?GETPOST('grabimagesinto'):'root');
|
||||
print '<br>';
|
||||
print '<input class="button" style="margin-top: 5px" type="submit" name="fetchexternalurl" value="'.dol_escape_htmltag($langs->trans("FetchAndCreate")).'">';
|
||||
print '<br>'.info_admin($langs->trans("OnlyEditionOfSourceForGrabbedContentFuture"), 0, 0, '1');
|
||||
print '</td></tr>';
|
||||
print '</table>';
|
||||
|
||||
@ -2347,7 +2347,7 @@ if ($action == 'editmeta' || $action == 'createcontainer')
|
||||
print '</td></tr>';
|
||||
|
||||
print '<tr><td class="titlefield">';
|
||||
print $langs->trans('WEBSITE_PAGEURL');
|
||||
print $langs->trans('InternalURLOfPage');
|
||||
print '</td><td>';
|
||||
print '/public/website/index.php?website='.urlencode($websitekey).'&pageid='.urlencode($pageid);
|
||||
print '</td></tr>';
|
||||
@ -2395,6 +2395,7 @@ if ($action == 'editmeta' || $action == 'createcontainer')
|
||||
print '<input type="text" class="flat minwidth300" name="WEBSITE_PAGENAME" id="WEBSITE_PAGENAME" value="'.dol_escape_htmltag($pageurl).'">';
|
||||
print '</td></tr>';
|
||||
|
||||
// Type of container
|
||||
print '<tr><td class="titlefield fieldrequired">';
|
||||
print $langs->trans('WEBSITE_TYPE_CONTAINER');
|
||||
print '</td><td>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user