mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 11:16:36 +02:00
fix translation.
This commit is contained in:
+1
-10
@@ -944,6 +944,7 @@ a:hover .icon.out-link { background-position: -500px -14px;}
|
||||
.entity-editor-pane .preset-icon-wrap {
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 20px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.entity-editor-pane .preset-icon-wrap::after {
|
||||
@@ -960,16 +961,6 @@ a:hover .icon.out-link { background-position: -500px -14px;}
|
||||
border-bottom-color: #ccc;
|
||||
}
|
||||
|
||||
.entity-editor-pane .preset-icon-wrap > button {
|
||||
display: block;
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
margin: auto;
|
||||
border-radius: 4px;
|
||||
position: relative;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.form-field {
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
|
||||
+2
-1
@@ -185,7 +185,8 @@ en:
|
||||
search: Search
|
||||
unknown: Unknown
|
||||
incomplete: <not downloaded>
|
||||
feature_list: Feature List
|
||||
feature_list: Feature list
|
||||
edit: edit feature
|
||||
background:
|
||||
title: Background
|
||||
description: Background settings
|
||||
|
||||
Vendored
+2
-1
@@ -228,7 +228,8 @@
|
||||
"search": "Search",
|
||||
"unknown": "Unknown",
|
||||
"incomplete": "<not downloaded>",
|
||||
"feature_list": "Feature List"
|
||||
"feature_list": "Feature list",
|
||||
"edit": "edit feature"
|
||||
},
|
||||
"background": {
|
||||
"title": "Background",
|
||||
|
||||
@@ -34,7 +34,7 @@ iD.ui.EntityEditor = function(context) {
|
||||
// Update
|
||||
|
||||
$header.select('h3')
|
||||
.text(preset.name());
|
||||
.text(t('inspector.edit'));
|
||||
|
||||
$header.select('.preset-close')
|
||||
.on('click', function() {
|
||||
@@ -49,11 +49,15 @@ iD.ui.EntityEditor = function(context) {
|
||||
$enter = $body.enter().append('div')
|
||||
.attr('class', 'inspector-body');
|
||||
|
||||
$enter.append('div')
|
||||
.attr('class', 'preset-icon-wrap inspector-inner')
|
||||
.append('button')
|
||||
.attr('class', 'preset-reset preset-icon-button')
|
||||
.call(bootstrap.tooltip()
|
||||
var headerbutton = $enter.append('div')
|
||||
.attr('class', 'preset-icon-wrap inspector-inner fillL')
|
||||
.append('button')
|
||||
.attr('class', 'preset-list-button preset-reset')
|
||||
.append('div')
|
||||
.attr('class', 'label')
|
||||
.text(preset.name())
|
||||
|
||||
headerbutton.call(bootstrap.tooltip()
|
||||
.title(t('inspector.back_tooltip'))
|
||||
.placement('right'));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user