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

Commit a18b182

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/master' into pr/1359
2 parents ae6622b + 50156e9 commit a18b182

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+3838
-2109
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: 28 additions & 17 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 {
@@ -414,10 +414,15 @@ form {
414414
height: 100%;
415415
}
416416

417+
.flexRow-grid {
418+
/* use for wrapping grids of objects with 10px margins on the right side */
419+
margin-right: -10px;
420+
width: auto;
421+
}
422+
417423
.flexRow [class |= "flexCol"] {
418424
box-sizing: border-box;
419425
position: relative;
420-
overflow: hidden;
421426
}
422427

423428
.flexRow.pad [class |= "flexCol"] {
@@ -1451,11 +1456,12 @@ h5 {
14511456
/*.modal-hero..homeModal-hero, .modal.server-connect-modal .modal-hero*/
14521457
.modal-hero.bg-dark-blue {
14531458
background: #063753;
1459+
padding-top: 20px;
14541460
}
14551461
14561462
.modal-hero.iconBackground {
14571463
background-image: url(../imgs/openbazaar-icon-no-border.png);
1458-
background-position: 50% 30px;
1464+
background-position: 50% 75px;
14591465
background-size: 136px;
14601466
background-repeat: no-repeat;
14611467
}
@@ -1680,7 +1686,7 @@ input[type="text"].txtField-bar {
16801686
16811687
.txtFieldWrapper-bar:before {
16821688
color: #fff;
1683-
top: 17px;
1689+
top: 27px;
16841690
left: 15px;
16851691
opacity: 1;
16861692
}
@@ -1822,7 +1828,7 @@ margin: auto;
18221828
border: solid 1px #2378AA;
18231829
opacity: 1;
18241830
font-weight: 500;
1825-
font-size: 13px;
1831+
font-size: 15px;
18261832
transition: none;
18271833
letter-spacing: 0;
18281834
height: auto;
@@ -1831,7 +1837,7 @@ margin: auto;
18311837
}
18321838

18331839
.btn.btn-discoverToggle .toggle-txt {
1834-
opacity: .25;
1840+
opacity: .40;
18351841
transition: opacity .25s cubic-bezier(0, 0, 0.2, 1);
18361842
}
18371843

@@ -2850,7 +2856,8 @@ input[type="number"].fieldItem.fieldItem-withButton {
28502856
}
28512857

28522858
.fieldItem .fieldItem-selectWrapper {
2853-
position: relative;
2859+
position: absolute;
2860+
width: 100%;
28542861
}
28552862

28562863
.fieldItem .fieldItem-selectWrapper select {
@@ -2964,6 +2971,8 @@ input[type="number"].fieldItem.fieldItem-withButton {
29642971
padding: 15px;
29652972
border: 2px solid transparent;
29662973
color: #fff;
2974+
overflow: auto; /* use customThemeScrollbar to add a scrolbar */
2975+
word-break: break-all; /* prevent urls from making the text area grow */
29672976
}
29682977

29692978
.fieldItem-textarea:focus {
@@ -3114,12 +3123,11 @@ input[type="checkbox"].fieldItem + label {
31143123

31153124
input[type="checkbox"].fieldItem + label:before {
31163125
display: inline;
3117-
content: "\f372";
3126+
content: "\f371";
31183127
font-family: Ionicons;
31193128
line-height:inherit;
31203129
box-shadow: none;
31213130
opacity: 1;
3122-
font-family: Ionicons;
31233131
font-size: 1.5em;
31243132
}
31253133

@@ -3133,7 +3141,7 @@ input[type="checkbox"].fieldItem + label.compact:before {
31333141
}
31343142

31353143
input[type="checkbox"].fieldItem:checked + label:before {
3136-
content: "\f373";
3144+
content: "\f374";
31373145
}
31383146

31393147
input[type="checkbox"].fieldItem + label div,
@@ -3181,6 +3189,12 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
31813189
left: 0;
31823190
}
31833191

3192+
.homeModal-settings input[type="checkbox"].fieldItem + label:before {
3193+
float: left;
3194+
margin-left: 8px;
3195+
margin-right: 10px;
3196+
}
3197+
31843198
#userPage .fieldItem-selectWrapper select option {
31853199
background-color: #4a4848;
31863200
}
@@ -3443,10 +3457,6 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
34433457
border-bottom: 0;
34443458
}
34453459

3446-
.capitalize {
3447-
text-transform: capitalize;
3448-
}
3449-
34503460
.shadow-inner1-ultra-light {
34513461
box-shadow: inset 0px -130px 112px -52px rgba(25,25,25,.35);
34523462
}
@@ -3679,6 +3689,7 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
36793689
.spinner-with-logo {
36803690
background: url('../imgs/icon-with-opening.png') 100% 100%;
36813691
background-size: cover;
3692+
background-repeat: no-repeat;
36823693
width: 215px;
36833694
height: 215px;
36843695
position: relative;
@@ -3726,7 +3737,7 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
37263737
.modal .homeModal-heroText {
37273738
position: absolute;
37283739
bottom: 0px;
3729-
top: 180px;
3740+
top: 210px;
37303741
color: #fff;
37313742
font-size: 20px;
37323743
line-height: 22px;

js/config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ module.exports = {
1010

1111
bitcoinValidationRegex: bitcoinValidationRegex,
1212

13+
keyShortcutPrefix: window.navigator.platform === 'MacIntel' ? '⌘' : 'Ctrl+',
14+
1315
keyShortcuts: {
16+
undo: 'z',
1417
discover: 'd',
1518
myPage: 'h',
1619
customizePage: 'e',
@@ -19,7 +22,9 @@ module.exports = {
1922
sales: 'y',
2023
cases: 'j',
2124
settings: 'g',
22-
addressBar: 'l'
25+
addressBar: 'l',
26+
save: 's',
27+
restart: 'r'
2328
},
2429

2530
setTestnet: function(testNetBoolean){

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)