mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 02:36:34 +01:00
Little modifications in speed dial + fixed spelling mistake.
This commit is contained in:
parent
156d67f25e
commit
0aeead3825
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -793,7 +793,7 @@ void QupZilla::aboutToShowHelpMenu()
|
||||
m_menuHelp->addAction(m_actionAbout);
|
||||
m_menuHelp->addSeparator();
|
||||
#endif
|
||||
QAction* infoAction = new QAction(QIcon(":/icons/menu/informations.png"), tr("Informations about application"), m_menuHelp);
|
||||
QAction* infoAction = new QAction(QIcon(":/icons/menu/informations.png"), tr("Information about application"), m_menuHelp);
|
||||
infoAction->setData(QUrl("qupzilla:about"));
|
||||
infoAction->setShortcut(QKeySequence(QKeySequence::HelpContents));
|
||||
connect(infoAction, SIGNAL(triggered()), this, SLOT(loadActionUrlInNewTab()));
|
||||
|
@ -8,10 +8,10 @@ body * {-webkit-user-select: none;font-size: 100%;line-height: 1.6;margin: 0px;}
|
||||
.add {position: absolute;right:10px;top:10px;width: 24px;height: 24px;background: url(%IMG_PLUS%); cursor: pointer;}
|
||||
|
||||
#quickdial {margin: auto;text-align: center;}
|
||||
#quickdial div.entry {position: relative;width: %SD-SIZE%px;float: left;border-width: 10px;
|
||||
#quickdial div.entry {position: relative; float: left;border-width: 10px;
|
||||
-webkit-border-image: url(%BOX-BORDER%) 10;margin: 5px;}
|
||||
#quickdial img {display: block;margin: auto;}
|
||||
#quickdial img[src*=".png"] {width: %SD-SIZE%px;height: auto;}
|
||||
#quickdial img[src*=".png"] {height: auto;}
|
||||
#quickdial a {position: absolute;left: 0px;top: 0px;width: 100%;height: 87%;}
|
||||
|
||||
div.entry:hover .edit, div.entry:hover .close, div.entry:hover .reload{display: inline;}
|
||||
@ -34,7 +34,7 @@ span.reload:hover {border-color: grey; border-radius: 4px;}
|
||||
.formTable input[type="text"] {width: 100%;-webkit-user-select: auto;}
|
||||
|
||||
.sett {position: absolute;right:36px;top:10px;width: 24px;height: 24px;background: url(%IMG_SETTINGS%); cursor: pointer;}
|
||||
#settingsBox {position: absolute;right:58px;top:25px;width: 250px;height: auto;background: #eeeeee;margin: 5px;-webkit-box-shadow: 0 0 6px 6px#888;box-shadow: 0 0 6px 6px #888;border-radius: 15px;padding: 8px 15px;border: 1px solid transparent;opacity: 1;z-index:200}
|
||||
#settingsBox {position: absolute;right:58px;top:25px;width: 250px;height: auto;background: #eeeeee;margin: 5px;border-radius: 15px;padding: 8px 15px;border: 1px solid transparent;opacity: 1;z-index:200}
|
||||
#settingsBox .content {float:right;}
|
||||
#settingsBox .thumbhold {margin: 2px;padding: 1px;border-radius: 10px;text-align:center;width: 100px; height: 100px;background: #AAA;}
|
||||
#settingsBox .thumbhold p {margin: 0;padding: 0;background: #eeeeee url(%IMG_BACKGROUND%) no-repeat center center;background-size: %B_SIZE%;width: 98px;height:98px;border-radius: 10px;position: relative;left: 1px;top: 1px;}
|
||||
@ -60,10 +60,7 @@ var TITLE_REMOVE = '%TITLE-REMOVE%';
|
||||
var TITLE_RELOAD = '%TITLE-RELOAD%';
|
||||
var TITLE_FETCHTITLE = '%TITLE-FETCHTITLE%';
|
||||
var MAX_PAGES_ROW = %ROW-PAGES%;
|
||||
|
||||
$(document).ready(function () {
|
||||
$('head').append('<style type="text/css" media="screen">#quickdial div.entry {height: ' + Math.round(%SD-SIZE% / 1.54) + 'px;}</style>');
|
||||
});
|
||||
var DIAL_WIDTH = %SD-SIZE%;
|
||||
|
||||
var editingId = -1;
|
||||
|
||||
@ -276,10 +273,14 @@ function removeBox(id) {
|
||||
}
|
||||
|
||||
function alignPage() {
|
||||
$('#quickdial img[src*=".png"]').css('width', DIAL_WIDTH);
|
||||
$('#quickdial div.entry').css({'width' : DIAL_WIDTH + 'px',
|
||||
'height' : Math.round(DIAL_WIDTH / 1.54) + 'px'});
|
||||
|
||||
var width = $(window).width();
|
||||
var height = $(window).height();
|
||||
var boxWidth = Math.floor(%SD-SIZE% + 30);
|
||||
var boxHeight = Math.floor(Math.round(%SD-SIZE% / 1.54) + 40);
|
||||
var boxWidth = Math.floor(DIAL_WIDTH + 30);
|
||||
var boxHeight = Math.floor(Math.round(DIAL_WIDTH / 1.54) + 40);
|
||||
|
||||
var maxBoxes = Math.floor(width / boxWidth);
|
||||
if (maxBoxes > MAX_PAGES_ROW) maxBoxes = MAX_PAGES_ROW;
|
||||
@ -291,7 +292,9 @@ function alignPage() {
|
||||
var boxesCount = $("#quickdial").children("div").size();
|
||||
var rows = Math.ceil(boxesCount / maxBoxes);
|
||||
var margintop = (height - rows * boxHeight) / 2;
|
||||
|
||||
if (margintop < 0) margintop = 0;
|
||||
|
||||
$("#quickdial").css('margin-top', margintop + 'px');
|
||||
}
|
||||
|
||||
@ -303,22 +306,15 @@ function bgImageSel() {
|
||||
}
|
||||
|
||||
function saveSettings() {
|
||||
<<<<<<< HEAD
|
||||
var BgImg = document.getElementById('BgImgHold').value;
|
||||
var BgImgSz = document.getElementById('BgImgSelSiz').value;
|
||||
MAX_PAGES_ROW = document.getElementById('PgInRow').value;
|
||||
speeddial.setBackgroundImage(BgImg);
|
||||
speeddial.setBackgroundImageSize(BgImgSz);
|
||||
speeddial.setPagesInRow(MAX_PAGES_ROW);
|
||||
MAX_PAGES_ROW = $('#PgInRow').val();
|
||||
DIAL_WIDTH = parseInt($('#SdSize').val());
|
||||
|
||||
document.getElementById('settingsBox').style.display = 'none';
|
||||
alignPage();
|
||||
=======
|
||||
speeddial.setBackgroundImage($('#BgImgHold').val());
|
||||
speeddial.setBackgroundImageSize($('#BgImgSelSiz').val());
|
||||
speeddial.setPagesInRow($('#PgInRow').val());
|
||||
speeddial.setSdSize($('#SdSize').val());
|
||||
>>>>>>> 5a9e3ba389b76c5e8b0477483f6298ff5dd53ddc
|
||||
speeddial.setPagesInRow(MAX_PAGES_ROW);
|
||||
speeddial.setSdSize(DIAL_WIDTH);
|
||||
|
||||
alignPage();
|
||||
}
|
||||
|
||||
function bgImgToggle() {
|
||||
@ -339,7 +335,7 @@ function sdSizeToggle() {
|
||||
var SdSizeSl = document.getElementById('sliderValueSd');
|
||||
SdSize.disabled = (check.checked ? false : true);
|
||||
SdSize.value = (check.checked ? SdSize.value : 231);
|
||||
SdSizeSl.innerHTML = (check.checked ? %SD-SIZE% : 231);
|
||||
SdSizeSl.innerHTML = (check.checked ? DIAL_WIDTH : 231);
|
||||
}
|
||||
|
||||
function bgImgUpdate() {
|
||||
@ -356,7 +352,7 @@ function bgImgUpdate() {
|
||||
$(document).ready(function () {
|
||||
$('#BgImgSelSiz').val('%B_SIZE%').attr('selected','selected');
|
||||
var bgImg = '%IMG_BACKGROUND%';
|
||||
var sdSize = '%SD-SIZE%';
|
||||
var sdSize = 'DIAL_WIDTH';
|
||||
bgImg == '' ? $('#BgImgToggle').prop('checked', false) : $('#BgImgToggle').prop('checked', true)
|
||||
sdSize == '231' ? $('#SdSizeToggle').prop('checked', false) : $('#SdSizeToggle').prop('checked', true)
|
||||
$('#BgImgToggle').is(':checked') ? $('#BgImgSel').removeAttr('disabled') : $('#BgImgSel').attr('disabled', 'disabled');
|
||||
@ -424,35 +420,11 @@ $("#quickdial").sortable({
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
<input class="button" type="button" value="%APPLY%" onClick="saveSettings();$('#fadeOverlay2').fadeOut('slow', function(){window.location.reload();});" />
|
||||
<input class="button" type="button" value="%APPLY%" onClick="saveSettings();$('#fadeOverlay2').fadeOut('slow');" />
|
||||
</p>
|
||||
</div>
|
||||
<div class="thumbhold"><p id="thumb"></p></div>
|
||||
</div>
|
||||
<<<<<<< HEAD
|
||||
<div class="title"><input type="checkbox" name="sdbackimg" id="BgImgToggle" onchange="bgImgToggle();bgImgUpdate()" /> <label for="BgImgToggle">%TXT_NOTE%</label></div>
|
||||
<div class="content">
|
||||
<p>
|
||||
<input id="BgImgSel" type="button" class="button" value="%TXT_SELECTIMAGE%" onclick="bgImageSel();bgImgUpdate()" />
|
||||
<input id="BgImgHold" type="hidden" value="%IMG_BACKGROUND%" />
|
||||
</p>
|
||||
<p>
|
||||
<label for="BgImgSelSiz">%TXT_PLACEMENT%</label><br />
|
||||
<select id="BgImgSelSiz" name="imgselsize" onchange="bgImgUpdate()">
|
||||
<option value="auto">%TXT_AUTO%</option>
|
||||
<option value="cover">%TXT_COVER%</option>
|
||||
<option value="contain">%TXT_FIT%</option>
|
||||
<option value="100% auto">%TXT_FWIDTH%</option>
|
||||
<option value="auto 100%">%TXT_FHEIGHT%</option>
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
<input class="button" type="button" value="%APPLY%" onClick="saveSettings();" />
|
||||
</p>
|
||||
</div>
|
||||
<div class="thumbhold"><p id="thumb" ></p></div>
|
||||
=======
|
||||
>>>>>>> 5a9e3ba389b76c5e8b0477483f6298ff5dd53ddc
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -267,12 +267,8 @@ QString QupZillaSchemeReply::speeddialPage()
|
||||
dPage.replace("%TXT_FHEIGHT%", tr("Fit Height"));
|
||||
dPage.replace("%TXT_NOTE%", tr("Use background image"));
|
||||
dPage.replace("%TXT_SELECTIMAGE%", tr("Select image"));
|
||||
<<<<<<< HEAD
|
||||
dPage.replace("%TXT_NRROWS%", tr("Max pages in row:"));
|
||||
=======
|
||||
dPage.replace("%TXT_NRROWS%", tr("Max number of pages in a row:"));
|
||||
dPage.replace("%TXT_SDSIZE%", tr("Change size of dials"));
|
||||
>>>>>>> 5a9e3ba389b76c5e8b0477483f6298ff5dd53ddc
|
||||
dPage.replace("%TXT_NRROWS%", tr("Maximum pages in a row:"));
|
||||
dPage.replace("%TXT_SDSIZE%", tr("Change size of pages:"));
|
||||
}
|
||||
|
||||
QString page = dPage;
|
||||
|
@ -2836,6 +2836,11 @@ nebyl nalezen!</translation>
|
||||
<source>&Page Source</source>
|
||||
<translation>Zdrojový &kód stránky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation>Informace o aplikaci</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="1216"/>
|
||||
<source> - QupZilla</source>
|
||||
@ -3018,9 +3023,8 @@ nebyl nalezen!</translation>
|
||||
<translation>&O QupZille</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informace o aplikaci</translation>
|
||||
<translation type="obsolete">Informace o aplikaci</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3323,13 +3327,17 @@ nebyl nalezen!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation>Maximum stránek v řadě:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Change size of pages:</source>
|
||||
<translation>Změnit velikost stránek:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<translation type="obsolete">Maximální počet stránek v řadě:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="252"/>
|
||||
|
@ -2833,6 +2833,11 @@
|
||||
<source>&Page Source</source>
|
||||
<translation>Seiten-&Quelltext</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="1216"/>
|
||||
<source> - QupZilla</source>
|
||||
@ -3015,9 +3020,8 @@
|
||||
<translation>Über Qup&Zilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informationen über QupZilla</translation>
|
||||
<translation type="obsolete">Informationen über QupZilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3370,12 +3374,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
@ -2977,15 +2977,19 @@
|
||||
<source>About &Qt</source>
|
||||
<translation>&Περί Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="282"/>
|
||||
<source>&About QupZilla</source>
|
||||
<translation>Πε&ρί QupZilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Πληροφορίες για την εφαρμογή</translation>
|
||||
<translation type="obsolete">Πληροφορίες για την εφαρμογή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3318,12 +3322,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2934,13 +2934,13 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="282"/>
|
||||
<source>&About QupZilla</source>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<location filename="../src/app/qupzilla.cpp" line="282"/>
|
||||
<source>&About QupZilla</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -3266,12 +3266,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2973,9 +2973,8 @@
|
||||
<translation>&Acerca de QupZilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Información acerca de la aplicación</translation>
|
||||
<translation type="obsolete">Información acerca de la aplicación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3037,6 +3036,11 @@
|
||||
<source>Pr&eferences</source>
|
||||
<translation>&Preferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="889"/>
|
||||
<source>Other</source>
|
||||
@ -3317,12 +3321,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2937,6 +2937,11 @@ n'a pas été trouvé!</translation>
|
||||
<source>Organize &Bookmarks</source>
|
||||
<translation>&Organiser les marque-pages</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="1216"/>
|
||||
<source> - QupZilla</source>
|
||||
@ -2995,9 +3000,8 @@ n'a pas été trouvé!</translation>
|
||||
<translation>A propos de Qup&Zilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informations à propos de QupZilla</translation>
|
||||
<translation type="obsolete">Informations à propos de QupZilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3320,12 +3324,12 @@ n'a pas été trouvé!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2928,6 +2928,11 @@
|
||||
<source>Organize &Bookmarks</source>
|
||||
<translation>Organizza &segnalibri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="1216"/>
|
||||
<source> - QupZilla</source>
|
||||
@ -2986,9 +2991,8 @@
|
||||
<translation>&Informazioni su QupZilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informazioni sull' applicazione</translation>
|
||||
<translation type="obsolete">Informazioni sull' applicazione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3320,12 +3324,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2832,6 +2832,11 @@ werd niet gevonden!</translation>
|
||||
<source>&Page Source</source>
|
||||
<translation>&Pagina-broncode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="1216"/>
|
||||
<source> - QupZilla</source>
|
||||
@ -3014,9 +3019,8 @@ werd niet gevonden!</translation>
|
||||
<translation>&Over QupZilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informatie over programma</translation>
|
||||
<translation type="obsolete">Informatie over programma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3319,12 +3323,12 @@ werd niet gevonden!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2839,6 +2839,11 @@
|
||||
<source>&Home</source>
|
||||
<translation>&Strona startowa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="1216"/>
|
||||
<source> - QupZilla</source>
|
||||
@ -3016,9 +3021,8 @@
|
||||
<translation>&O QupZilli</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informacje o aplikacji</translation>
|
||||
<translation type="obsolete">Informacje o aplikacji</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3321,12 +3325,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2976,15 +2976,19 @@ não foi encontrado!</translation>
|
||||
<source>About &Qt</source>
|
||||
<translation>Sobre &Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="282"/>
|
||||
<source>&About QupZilla</source>
|
||||
<translation>Sobre QupZill&a</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informações da aplicação</translation>
|
||||
<translation type="obsolete">Informações da aplicação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3317,12 +3321,12 @@ não foi encontrado!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2986,15 +2986,19 @@
|
||||
<source>About &Qt</source>
|
||||
<translation>О &Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="282"/>
|
||||
<source>&About QupZilla</source>
|
||||
<translation>&О QupZilla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>О программе</translation>
|
||||
<translation type="obsolete">О программе</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3329,12 +3333,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2340,7 +2340,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Informations about application</source>
|
||||
<translation>Informácie o programe</translation>
|
||||
<translation type="obsolete">Informácie o programe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Your session is not stored.</source>
|
||||
@ -2462,6 +2462,10 @@
|
||||
<source> - QupZilla</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QupZillaSchemeReply</name>
|
||||
@ -2682,11 +2686,11 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
@ -2936,15 +2936,19 @@
|
||||
<source>About &Qt</source>
|
||||
<translation>О &Кјуту</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="282"/>
|
||||
<source>&About QupZilla</source>
|
||||
<translation>&О Капзили</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Инфо програма</translation>
|
||||
<translation type="obsolete">Инфо програма</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3269,13 +3273,21 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<translation>Максималан број брзих бирања у реду:</translation>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<translation type="obsolete">Максималан број брзих бирања у реду:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Change size of dials</source>
|
||||
<translation>Промијени величину брзих бирања</translation>
|
||||
<translation type="obsolete">Промијени величину брзих бирања</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="252"/>
|
||||
|
@ -2936,15 +2936,19 @@
|
||||
<source>About &Qt</source>
|
||||
<translation>О &Кјуту</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="282"/>
|
||||
<source>&About QupZilla</source>
|
||||
<translation>&О Капзили</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>Инфо програма</translation>
|
||||
<translation type="obsolete">Инфо програма</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3269,13 +3273,21 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<translation>Максималан број брзих бирања у реду:</translation>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<translation type="obsolete">Максималан број брзих бирања у реду:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Change size of dials</source>
|
||||
<translation>Промени величину брзих бирања</translation>
|
||||
<translation type="obsolete">Промени величину брзих бирања</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="252"/>
|
||||
|
@ -2967,9 +2967,8 @@
|
||||
<translation>关于QupZIlla&A</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Informations about application</source>
|
||||
<translation>软件信息</translation>
|
||||
<translation type="obsolete">软件信息</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="801"/>
|
||||
@ -3031,6 +3030,11 @@
|
||||
<source>Pr&eferences</source>
|
||||
<translation>首选项&e</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="796"/>
|
||||
<source>Information about application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="889"/>
|
||||
<source>Other</source>
|
||||
@ -3311,12 +3315,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Max number of pages in a row:</source>
|
||||
<source>Maximum pages in a row:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Change size of dials</source>
|
||||
<source>Change size of pages:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
Loading…
Reference in New Issue
Block a user