lang strings, more consistent naming of the new scratchboard.

This commit is contained in:
Garvin Hicking
2003-06-23 17:33:14 +00:00
parent cbbd016339
commit a718321ace
3 changed files with 6 additions and 4 deletions

View File

@@ -10,12 +10,14 @@ $Source$
on the dom-drag scratchboard on the dom-drag scratchboard
2003-06-23 Garvin Hicking <me@supergarv.de> 2003-06-23 Garvin Hicking <me@supergarv.de>
* ChangeLog, Documentation.html, config.inc.php3, pdf_pages.php3, * Documentation.html, config.inc.php3, pdf_pages.php3,
css/phpmyadmin.css.php3, libraries/common.lib.php3, css/phpmyadmin.css.php3, libraries/common.lib.php3,
libraries/config_import.lib.php3, libraries/dom-drag.js, libraries/config_import.lib.php3, libraries/dom-drag.js,
libraries/functions.js: Added Patch #757907: DHTML WYSIWYG-control libraries/functions.js: Added Patch #757907: DHTML WYSIWYG-control
for PDF-relation setup. Based on DOM-drag.js, a library provided for PDF-relation setup. Based on DOM-drag.js, a library provided
by Aaron Boodman (youngpup.net). by Aaron Boodman (youngpup.net).
* lang/german*: Updates
* lang/*, pdf_pages.php3: Strings for DHTML scratchboard
2003-06-23 Alexander M. Turek <rabus@users.sourceforge.net> 2003-06-23 Alexander M. Turek <rabus@users.sourceforge.net>
* lang/arabic-*.inc.php3, lang/czech-*.inc.php3, lang/finnish-*.inc.php3, * lang/arabic-*.inc.php3, lang/czech-*.inc.php3, lang/finnish-*.inc.php3,

View File

@@ -1648,7 +1648,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
<dt><b>$cfg['WYSIWYG-PDF'] </b>boolean</dt> <dt><b>$cfg['WYSIWYG-PDF'] </b>boolean</dt>
<dd> <dd>
Utilizes a WYSIWYG editing control to easily place elements of a PDF page. Utilizes a WYSIWYG editing control to easily place elements of a PDF page.
By clicking on the button 'toggle Drag and Drop area' on the page wher you By clicking on the button 'toggle scratchboard' on the page where you
edit x/y coordinates of those elements you can activate a scratchboard where edit x/y coordinates of those elements you can activate a scratchboard where
all your elements are placed. By clicking on an element, you can move them all your elements are placed. By clicking on an element, you can move them
around in the pre-defined area and the x/y coordinates will get updated around in the pre-defined area and the x/y coordinates will get updated

View File

@@ -305,8 +305,8 @@ if ($cfg['WYSIWYG-PDF']) {
?> ?>
<script type="text/javascript" src="./libraries/dom-drag.js"></script> <script type="text/javascript" src="./libraries/dom-drag.js"></script>
<form method="post" action="pdf_pages.php3" name="dragdrop"> <form method="post" action="pdf_pages.php3" name="dragdrop">
<input type="button" name="dragdrop" value="toggle Drag and Drop area" onclick="ToggleDragDrop('pdflayout');" /> <input type="button" name="dragdrop" value="<?php echo $strToggleScratchboard; ?>" onclick="ToggleDragDrop('pdflayout');" />
<input type="button" name="dragdropreset" value="reset" onclick="resetDrag();" /> <input type="button" name="dragdropreset" value="<?php echo $strReset; ?>" onclick="resetDrag();" />
</form> </form>
<div id="pdflayout" class="pdflayout" style="visibility: hidden;"> <div id="pdflayout" class="pdflayout" style="visibility: hidden;">
<?php <?php