sa marche plus #2808
bernie79160
started this conversation in
General
sa marche plus
#2808
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
text-align: left;
}
.textright {
text-align: right;
}
span.activity {
display: inline-block;
height: 14px;
3 changes: 3 additions & 0 deletions3
js/web/_i18n/de.json
@@ -209,6 +209,8 @@
"Boxes.Castle.VisitAntiqueDealerWarning": "Öffne den Antiquitätenhändler um die Daten zu aktualisieren.",
"Boxes.Castle.VisitCastleWarning": "Öffne die Burg Übersicht um die Daten zu aktualisieren.",
"Boxes.Castle.VisitGexWarning": "Öffne die GEX Übersicht um die Daten zu aktualisieren.",
"Boxes.CityMap.Boosts": "Boosts & Produktion",
"Boxes.CityMap.Building": "Gebäude",
"Boxes.CityMap.CavalierPerspecitve": "Kavalierperspektive",
"Boxes.CityMap.CopyMetaInfos": "Daten kopieren",
"Boxes.CityMap.Desc1": "Um deine Stadt planen zu können, müssen wir deine Daten zu foe-helper.com schicken. Dort kannst du dich dann austoben.
Solltest Du dort noch keinen Account haben werden mit dieser Übermittlung Deine Grunddaten mitgesendet. Auf der Webseite kannst Du dann deinen Account registrieren.",
@@ -221,6 +223,7 @@
"Boxes.CityMap.OlderThan3Era": " liegen 3 ZA zurück",
"Boxes.CityMap.OlderThan4Era": " liegen 4+ ZA zurück",
"Boxes.CityMap.OutpostSubmit": "Zum Stadtplaner schicken",
"Boxes.CityMap.QIHint": "Alle Werte nehmen an, dass die Gebäude fertiggestellt sind.",
"Boxes.CityMap.ShowNoStreetBuildings": "Markiere Gebäude, die keine Straße brauchen",
"Boxes.CityMap.ShowSubmitBox": "Stadtplaner",
"Boxes.CityMap.Submit": "Abschicken",
3 changes: 3 additions & 0 deletions3
js/web/_i18n/en.json
@@ -209,6 +209,8 @@
"Boxes.Castle.VisitAntiqueDealerWarning": "Open the antique dealer to update the data.",
"Boxes.Castle.VisitCastleWarning": "Open the castle overview to update the data.",
"Boxes.Castle.VisitGexWarning": "Open the GE overview to update the data.",
"Boxes.CityMap.Boosts": "Boosts & Production",
"Boxes.CityMap.Building": "Building",
"Boxes.CityMap.CavalierPerspecitve": "Side View",
"Boxes.CityMap.CopyMetaInfos": "Copy city data",
"Boxes.CityMap.Desc1": "To plan your city on foe-helper.com, we need to send your data to the website.
If you don't have an account there yet, your basic data will be sent along with this transmission. You can then register your account on the website.",
@@ -221,6 +223,7 @@
"Boxes.CityMap.OlderThan3Era": " are 3 Ages behind",
"Boxes.CityMap.OlderThan4Era": " are 4+ Ages behind",
"Boxes.CityMap.OutpostSubmit": "Submit to City-Planner",
"Boxes.CityMap.QIHint": "All displayed values assume your buildings have finished construction.",
"Boxes.CityMap.ShowNoStreetBuildings": "Highlight buildings that do not need streets",
"Boxes.CityMap.ShowSubmitBox": "City planner",
"Boxes.CityMap.Submit": "Submit",
40 changes: 39 additions & 1 deletion40
js/web/citymap/css/citymap.css
@@ -76,10 +76,48 @@
box-sizing: border-box;
}
.outpost #sidebar, .outpost #BuildingsFilter, .outpost #city-map-menu .btn-group {
.outpost #sidebar, .outpost #BuildingsFilter, .outpost #city-map-menu .btn-group, .outpost #map-filters {
display: none;
}
.outpost.guild_raids #sidebar {
display: block;
width: 400px;
padding: 3px;
}
.outpost.guild_raids #map-container, .outpost.guild_raids #city-map-menu {
right: 400px;
}
#city-map-overlayBody .prod::before {
background: transparent url('../../productions/images/productions.png') -233px 2px no-repeat;
background-size: auto 100%;
display: inline-block;
content: '';
width: 20px;
height: 20px;
}
#city-map-overlayBody .prod.population::before { background-position: -142px 3px; }
#city-map-overlayBody .prod.happiness::before { background-position: -122px 3px; }
#city-map-overlayBody .prod.guild_raids_money::before { background-position: -20px 3px; }
#city-map-overlayBody .prod.guild_raids_supplies::before { background-position: -40px 3px; }
#city-map-overlayBody .prod.att_def_boost_attacker::before { background-position: -340px 1px; }
#city-map-overlayBody .prod.att_def_boost_defender::before { background-position: -362px 1px; }
#city-map-overlayBody .prod.guild_raids_action_points_collection::before { background-position: -383px 2px; }
#city-map-overlayBody th.population::before, #city-map-overlayBody th.happiness::before {
background: transparent url('../../productions/images/productions.png') -233px 2px no-repeat;
background-size: auto 100%;
display: inline-block;
content: '';
width: 23px;
height: 23px;
}
#city-map-overlayBody th.population::before { background-position: -162px 3px; }
#city-map-overlayBody th.happiness::before { background-position: -140px 3px; }
#sidebar p {
margin-bottom: 5px;
}
150 changes: 144 additions & 6 deletions150
js/web/citymap/js/citymap.js
@@ -33,6 +33,7 @@ let CityMap = {
EraOutpostData: null,
EraOutpostAreas: [],
QIData: null,
QIStats: null,
QIAreas: [],
@@ -147,7 +148,7 @@ let CityMap = {
$('#city-map-overlayHeader > .title').attr('id', 'map' + CityMap.hashCode(Title));
@@ -208,7 +209,7 @@ let CityMap = {
});
@@ -227,10 +228,14 @@ let CityMap = {
);
}
@@ -341,7 +346,6 @@ let CityMap = {
$('#grid-outer').append( f );
}
@@ -351,6 +355,140 @@ let CityMap = {
},
Beta Was this translation helpful? Give feedback.
All reactions