Small fixes: add warp break words, fix pt lang.

This commit is contained in:
Oleg Sh 2020-10-30 18:11:15 +02:00
parent 06f5d3929a
commit 5b1393e931
4 changed files with 18 additions and 5 deletions

View File

@ -359,4 +359,9 @@
#EdgeLabelControls #EdgeLabelControls
{ {
padding-top: 4px; padding-top: 4px;
}
#message
{
overflow-wrap: break-word;
} }

View File

@ -139,6 +139,15 @@
$g_lang["adjacency_matrix_multigraph_description"] = "Matriz de multigrafo contém pesos das arestas mínimas entre os vértices"; $g_lang["adjacency_matrix_multigraph_description"] = "Matriz de multigrafo contém pesos das arestas mínimas entre os vértices";
$g_lang["graph_is_multi_message"] = "Multigrafo não suporta todos os algoritmos"; $g_lang["graph_is_multi_message"] = "Multigrafo não suporta todos os algoritmos";
$g_lang["graph_is_general_message"] = ""; $g_lang["graph_is_general_message"] = "";
$g_lang["text_above_edge"] = "Text above edge";
$g_lang["select_groupe_mac"] = "Use Cmd⌘ to select several objects.";
$g_lang["select_groupe_win"] = "Use Ctrl to select several objects.";
$g_lang["drag_select_group"] = "Drag group.";
$g_lang["copy_select_group"] = "Copy group";
$g_lang["remove_select_group"] = "Delete group";
$g_lang["replace_edge"] = "Substituir atual"; $g_lang["replace_edge"] = "Substituir atual";
$g_lang["add_edge"] = "Adicionar (multigrafo)"; $g_lang["add_edge"] = "Adicionar (multigrafo)";
$g_lang["bfs_name"] = "Busca em Largura (BFS)"; $g_lang["bfs_name"] = "Busca em Largura (BFS)";

View File

@ -163,7 +163,7 @@
</div> </div>
</section> </section>
<? if (L('current_language') == "en" && false): ?> <?php if (L('current_language') == "en" && false): ?>
<section style="height:32px;text-align: center;" id="bottom_info" class="hidden-phone"> <section style="height:32px;text-align: center;" id="bottom_info" class="hidden-phone">
<a class="ProgresssBarLink" href="https://docs.google.com/spreadsheets/d/1iLswxMsTwfEu56RjW21nCov2LS_A-OJlmfJZ-j4Cj80/edit?usp=sharing" target="_blank"> <a class="ProgresssBarLink" href="https://docs.google.com/spreadsheets/d/1iLswxMsTwfEu56RjW21nCov2LS_A-OJlmfJZ-j4Cj80/edit?usp=sharing" target="_blank">
@ -174,8 +174,7 @@
</a> </a>
</section> </section>
<? else: ?> <?php else: ?>
<section style="height:32px;text-align: center;" id="bottom_info" class="hidden-phone"> <section style="height:32px;text-align: center;" id="bottom_info" class="hidden-phone">
<a class="ProgresssBarLink" href="opensource" target="_blank"> <a class="ProgresssBarLink" href="opensource" target="_blank">
<div class="ProgressBar" style="height:32px"> <div class="ProgressBar" style="height:32px">
@ -185,7 +184,7 @@
</a> </a>
</section> </section>
<? endif; ?> <?php endif; ?>
<? if (L('current_language') == "ru" && false): ?> <? if (L('current_language') == "ru" && false): ?>
<!-- <!--

View File

@ -73,7 +73,7 @@
<?php } ?> <?php } ?>
<?php endforeach?> <?php endforeach?>
<li class="dropdown"> <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><img src="<?= Root("i/image/flags/enru.png")?>" alt="<?= $langInfo["name"]?>"> <?= L('lang')?> <span class="caret"></span></a> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><img src="<?= Root("i/image/flags/enru.png")?>" alt="<?= L('lang')?> icon"> <?= L('lang')?> <span class="caret"></span></a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<?php foreach($g_arrLangs as $lang => $langInfo):?> <?php foreach($g_arrLangs as $lang => $langInfo):?>
<?php if (!array_key_exists('hidden', $langInfo) || !$langInfo["hidden"]):?> <?php if (!array_key_exists('hidden', $langInfo) || !$langInfo["hidden"]):?>