Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit f38a5cd

Browse files
committed
2 parents 7507c41 + b33d4f1 commit f38a5cd

38 files changed

+3551
-1832
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OpenBazaar-Client
22

33
[![Build Status](https://travis-ci.org/OpenBazaar/OpenBazaar-Client.svg)](https://travis-ci.org/OpenBazaar/OpenBazaar-Client)
4-
[![Slack Status](http://slack.openbazaar.org/badge.svg)](https://slack.openbazaar.org)
4+
[![Slack Status](http://slack.openbazaar.org/badge.svg)](https://openbazaar-slackin-drwasho.herokuapp.com/)
55

66
You **must** be running the [OpenBazaar backend](https://github.com/OpenBazaar/OpenBazaar-Server) for the client to work!
77

css/obBase.css

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========== scroll bars ==========*/
22
#obContainer::-webkit-scrollbar {
3-
width: 6px;
3+
width: 8px;
44
}
55

66
#obContainer::-webkit-scrollbar-thumb {
@@ -25,7 +25,7 @@
2525
}
2626

2727
.customThemeScrollbar::-webkit-scrollbar {
28-
width: 6px;
28+
width: 8px;
2929
}
3030

3131
.customThemeScrollbar::-webkit-scrollbar-thumb {
@@ -38,7 +38,7 @@
3838
}
3939

4040
.popMenu-notificationsContent::-webkit-scrollbar {
41-
width: 6px;
41+
width: 8px;
4242
}
4343

4444
.popMenu-notificationsContent::-webkit-scrollbar-thumb {
@@ -417,7 +417,6 @@ form {
417417
.flexRow [class |= "flexCol"] {
418418
box-sizing: border-box;
419419
position: relative;
420-
overflow: hidden;
421420
}
422421

423422
.flexRow.pad [class |= "flexCol"] {
@@ -1443,11 +1442,12 @@ h5 {
14431442
/*.modal-hero..homeModal-hero, .modal.server-connect-modal .modal-hero*/
14441443
.modal-hero.bg-dark-blue {
14451444
background: #063753;
1445+
padding-top: 20px;
14461446
}
14471447
14481448
.modal-hero.iconBackground {
14491449
background-image: url(../imgs/openbazaar-icon-no-border.png);
1450-
background-position: 50% 30px;
1450+
background-position: 50% 75px;
14511451
background-size: 136px;
14521452
background-repeat: no-repeat;
14531453
}
@@ -1672,7 +1672,7 @@ input[type="text"].txtField-bar {
16721672
16731673
.txtFieldWrapper-bar:before {
16741674
color: #fff;
1675-
top: 17px;
1675+
top: 27px;
16761676
left: 15px;
16771677
opacity: 1;
16781678
}
@@ -1814,7 +1814,7 @@ margin: auto;
18141814
border: solid 1px #2378AA;
18151815
opacity: 1;
18161816
font-weight: 500;
1817-
font-size: 13px;
1817+
font-size: 15px;
18181818
transition: none;
18191819
letter-spacing: 0;
18201820
height: auto;
@@ -1823,7 +1823,7 @@ margin: auto;
18231823
}
18241824

18251825
.btn.btn-discoverToggle .toggle-txt {
1826-
opacity: .25;
1826+
opacity: .40;
18271827
transition: opacity .25s cubic-bezier(0, 0, 0.2, 1);
18281828
}
18291829

@@ -2842,7 +2842,8 @@ input[type="number"].fieldItem.fieldItem-withButton {
28422842
}
28432843

28442844
.fieldItem .fieldItem-selectWrapper {
2845-
position: relative;
2845+
position: absolute;
2846+
width: 100%;
28462847
}
28472848

28482849
.fieldItem .fieldItem-selectWrapper select {
@@ -2956,6 +2957,7 @@ input[type="number"].fieldItem.fieldItem-withButton {
29562957
padding: 15px;
29572958
border: 2px solid transparent;
29582959
color: #fff;
2960+
overflow: auto; /* use customThemeScrollbar to add a scrolbar */
29592961
}
29602962

29612963
.fieldItem-textarea:focus {
@@ -3106,12 +3108,11 @@ input[type="checkbox"].fieldItem + label {
31063108

31073109
input[type="checkbox"].fieldItem + label:before {
31083110
display: inline;
3109-
content: "\f372";
3111+
content: "\f371";
31103112
font-family: Ionicons;
31113113
line-height:inherit;
31123114
box-shadow: none;
31133115
opacity: 1;
3114-
font-family: Ionicons;
31153116
font-size: 1.5em;
31163117
}
31173118

@@ -3125,7 +3126,7 @@ input[type="checkbox"].fieldItem + label.compact:before {
31253126
}
31263127

31273128
input[type="checkbox"].fieldItem:checked + label:before {
3128-
content: "\f373";
3129+
content: "\f374";
31293130
}
31303131

31313132
input[type="checkbox"].fieldItem + label div,
@@ -3173,6 +3174,12 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
31733174
left: 0;
31743175
}
31753176

3177+
.homeModal-settings input[type="checkbox"].fieldItem + label:before {
3178+
float: left;
3179+
margin-left: 8px;
3180+
margin-right: 10px;
3181+
}
3182+
31763183
#userPage .fieldItem-selectWrapper select option {
31773184
background-color: #4a4848;
31783185
}
@@ -3718,7 +3725,7 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
37183725
.modal .homeModal-heroText {
37193726
position: absolute;
37203727
bottom: 0px;
3721-
top: 180px;
3728+
top: 210px;
37223729
color: #fff;
37233730
font-size: 20px;
37243731
line-height: 22px;

js/languages/da.json

Lines changed: 44 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,21 @@
1616
"ClosingOpenBazaar": "Luk (din side vil gå offline)",
1717
"Minimize": "Minimér",
1818
"Maximize": "Maksimér",
19+
"Restore": "Genopret",
1920
"Close": "Luk",
2021
"Yes": "Ja",
2122
"No": "Nej",
2223
"of": "af",
2324
"Sell": "Sælg",
2425
"New": "Ny",
25-
"HighlightToStyle": "Du kan bruge basal HTML, men HTML-links og -billed-tags er deaktiveret. Rene tekst-links med \"http://\", @brugernavn og #søgeTags blive klikbare.",
26+
"HighlightToStyle": "Highlight text to style",
2627
"Excellent": "Fremragende",
2728
"Good": "God",
2829
"Poor": "Dårlig",
29-
"StillValidating": "Dit brugernavn valideres stadig",
30-
"CheckStatus": "Tjek status",
30+
"StillValidating": "Dit brugernavn valideres stadig. Klik for at gemme eventuelle ændringer på denne side og tjek dit brugernavn igen.",
31+
"RefreshHandleStatus": "Tjek dit brugernavns status igen",
32+
"GoToOneName": "Gå til Onename.com",
33+
"GoToOneNameTooltip": "Opret et ID hos Onename.com og indtast \"openbazaar\" som app name og dit bruger-ID som account identifier under App Accounts (dit bruger-ID er på din side i Om-fanebladet). Verificering kan tage op til adskillige dage.",
3134
"ChangeCurrency": "Ændr valuta",
3235
"SKU": "Varenr.",
3336
"Refurbished": "Renoveret",
@@ -68,12 +71,14 @@
6871
"Welcome": "Velkommen",
6972
"CreateStore": "Opret en butik",
7073
"GoToMyPage": "Min side",
71-
"ShowOnlyFollowerListings": "Filtrerede listninger",
72-
"ShowOnlyFollowerListingsTooltip": "Vis kun listninger fra butikker, du følger",
73-
"ShowAllListingsTooltip": "Vis tilfældige listninger fra hele netværket",
74-
"ViewUnfilteredListings": "Vis ufiltrerede listninger",
75-
"AllListingsWarning": "Ved at deaktivere filtrerede listninger vil dit Opdagelses-feed bestå af tilfældige listninger fra hele netværket.\n\nVær venligst opmærksom på, at disse listninger potentielt kan indeholde indhold for voksne eller ulovligt indhold og/eller billeder, der kan være stødende.\n\nHvis du på noget tidspunkt vil vende tilbage til filtrerede listninger, kan du ganske simpelt genaktivere indstillingen, hvorefter dit Opdagelses-feed kun vil vise listninger fra butikker, du følger.",
76-
"ShowUnlfilteredListings": "Vis ufiltrerede listninger",
74+
"Random": "Random",
75+
"ShowOnlyFollowerListings": "Personalized",
76+
"TryRandom": "Try random mode to discover more",
77+
"ShowOnlyFollowerListingsTooltip": "View listings from stores I follow",
78+
"ShowAllListingsTooltip": "View random listings on the network",
79+
"ViewUnfilteredListings": "View Random Listings",
80+
"AllListingsWarning": "By deactivating personalized listings your Discover feed will be populated with random listings on the network. \n \n Please keep in mind that these listings may contain adult or illicit content and/or photos that may be offensive. \n \n If at any point you want to go back to viewing personalized listings, you can simply toggle the setting and your Discover feed will go back to normal.",
81+
"ShowUnlfilteredListings": "Show Random Listings",
7782
"SearchForItemsPlaceholder": "Skriv #games, #shoes eller et andet #tag…",
7883
"SearchForPagesPlaceholder": "Søg efter navn eller nøgleord",
7984
"SearchFeedPlaceholder": "Indtast et nøgleord…",
@@ -111,6 +116,7 @@
111116
"Description": "Beskrivelse",
112117
"Reviews": "Bedømmelser",
113118
"Shipping": "Forsendelse",
119+
"Shipping2": "Forsendelse:",
114120
"ShippingReturns": "Forsendelse og returret",
115121
"CountryOfOrigin": "Oprindelsesland:",
116122
"CanBeShippedTo": "Kan sendes til dig i:",
@@ -126,21 +132,28 @@
126132
"Keywords": "Nøgleord",
127133
"ShipsFrom": "Afsendes fra",
128134
"ShipsTo": "Sendes til",
129-
"AddShipToRegion": "Føj region til forsendelse",
130-
"AddShipToRegionNote": "valgfri",
135+
"AddShipToRegion": "Region for forsendelse",
136+
"AddShipToRegionNote": "Tilføjer alle nationer i en region",
137+
"SelectRegion": "Tilføj en valgfri region",
138+
"AllRegions": "All countries",
139+
"EuropeanUnion": "European Union",
140+
"EuropeanEconomicArea": "European Economic Area",
131141
"Optional": "Valgfri",
132142
"Customize": "Tilpas",
133143
"Save": "Gem",
134144
"Change": "Ændr",
135145
"Changes": "Ændringer",
136146
"SaveChanges": "Gem ændringer",
137147
"YourName": "Dit navn",
148+
"UseTestnet": "Use Testnet",
149+
"UseTestnetHelp": "If set to true, your client will use Testnet bitcoin addresses. Only set to true if your server was started with the -t testnet flag.",
138150
"TestnetAddress": "Testnet-adresse",
151+
"TestnetAddressHelp": "Your client is set to use the Testnet, and will only allow Testnet addresses. To use the mainnet, and real Bitcoin, turn off the Testnet in Settings/Advanced, and make sure your server was not started with the -t testnet flag.",
139152
"MustTestnetAddress": "Skal være en testnet-adresse",
140-
"BitcoinAddress": "Bitcoin-adresse",
153+
"BitcoinAddress": "Current Refund Address",
141154
"BitcoinReturnAddress": "Indtast din Bitcoin-adresse",
142155
"BitcoinReturnAddressPlaceholder": "Indtast Bitcoin-adresse…",
143-
"BitcoinReturnAddressInfo": "Hvis en returnering godkendes, skal pengene sendes til en Bitcoin-adresse. Angiv venligst en adresse i din tegnebog herunder.",
156+
"BitcoinReturnAddressInfo": "If a refund is issued, the funds will need to be sent to a Bitcoin address. Please provide an address to your Wallet below. You must be able to access this address later to receive a refund.",
144157
"LocalCurrency": "Lokal valuta",
145158
"TimeZone": "Tidszone",
146159
"ShipToName": "Modtagers navn",
@@ -196,17 +209,21 @@
196209
"CoverPhotoButton": "Vælg coverbillede",
197210
"AboutPlaceholder": "Fuld beskrivelse",
198211
"BackgroundColor": "Baggrundsfarve",
199-
"NotificationPaymentSent": "Betaling blev sendt til",
200-
"NotificationPaymentReceived": "Betaling blev modtaget af",
201-
"NotificationRatingRecieved": "Ordre gennemført, og bedømmelse modtaget fra",
202-
"NotificationOrderFor": "lagde en ordre på",
203-
"NotificationOrderConfirmed": "Din ordre er blevet bekræftet/afsendt",
204-
"NotificationFollow": "følger nu dig.",
205-
"NotificationDispute": "har åbnet en ny uenighed",
206-
"NotificationDisputeClosed": "denne uenighed er lukket",
207-
"NotificationRefund": "har refunderet din ordre.",
208-
"NoticationOrderStatus": "Ordrestatus opdateret; køber notificeret",
209-
"NotificationNewOrder": "har gjort et køb",
212+
"NotificationPaymentSent": "Betaling blev sendt til %{name}.",
213+
"NotificationPaymentReceived": "Betaling blev modtaget af %{name}.",
214+
"NotificationRatingRecieved": "Ordre gennemført, og bedømmelse modtaget fra %{name}.",
215+
"NotificationOrderFor": "%{name} lagde en ordre på %{title}.",
216+
"NotificationOrderConfirmed": "Din ordre er blevet bekræftet/afsendt.",
217+
"NotificationFollow": "%{name} følger nu dig.",
218+
"NotificationDispute": "%{name} har åbnet en ny uenighed.",
219+
"NotificationDisputeClosed": "Denne uenighed er lukket,",
220+
"NotificationRefund": "%{name} har refunderet din ordre.",
221+
"NoticationOrderStatus": "Ordrestatus opdateret; køber notificeret.",
222+
"NotificationNewOrder": "%{name} har gjort et køb.",
223+
"NotificationTitle": "Titel: %{title}",
224+
"NotificationFrom": "Fra: %{name}",
225+
"NotificationType": "Type: %{type}",
226+
"NotificationTime": "Tidspunkt: %{time}",
210227
"NoNotifications": "Ingen notifikationer",
211228
"WelcomeToYourPage": "Velkommen til din side!",
212229
"SearchForCategory": "Søg efter kategori",
@@ -466,7 +483,7 @@
466483
"TotalInTransaction": "Handel:",
467484
"StartDisputeFlag": "Uenighed startet",
468485
"CloseDisputeFlag": "Uenighed afsluttet",
469-
"PayoutOnlyBuyer": "Ved at lukke denne uenighed vil 100% af pengene blive returneret til køberen.",
486+
"PayoutOnlyBuyer": "Closing this dispute will return all of the funds to the buyer, minus the Moderator fee, because the seller has not yet given their bitcoin payout address.",
470487
"UpdatingOrder": "Opdaterer din transaktion",
471488
"UpdateComplete": "Din transaktionsopdatering er fuldført",
472489
"UpdateFailed": "Din transaktionsopdatering blev ikke fuldført. Åbn transaktionen og prøv igen",
@@ -632,7 +649,8 @@
632649
"moderatorPaymentDisclaimer": "Betales ud fra totalbeløbet, hvis handelen ender i en uenighed.",
633650
"directPaymentDisclaimer": "Brug direkte betaling med forsigtighed; pengene kan ikke trækkes tilbage!",
634651
"paymentSent": "Betaling afsendt!",
635-
"total": "Total:"
652+
"total": "Total:",
653+
"paymentNote": "Betaling kan tage adskillige minutter eller mere at gennemføre. Du kan forlade denne skærm og senere gå til sektionen Køb for at se, om din betaling er gennemført."
636654
},
637655
"chat": {
638656
"noSearchResultsFound": "Ingen resultater fundet"

0 commit comments

Comments
 (0)