Skip to content

Commit

Permalink
Update various files for removal of master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Mar 23, 2020
1 parent a7cba6a commit d669bbe
Show file tree
Hide file tree
Showing 50 changed files with 77 additions and 77 deletions.
10 changes: 5 additions & 5 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ of iD (e.g. `http://preview.ideditor.com/release/`), the following parameters ar
**in the hash portion of the URL**:

* __`background`__ - The value from a `sourcetag` property in iD's
[imagery list](https://github.com/openstreetmap/iD/blob/master/data/imagery.json),
[imagery list](https://github.com/openstreetmap/iD/blob/develop/data/imagery.json),
or a custom tile URL. A custom URL is specified in the format `custom:<url>`,
where the URL can contain the standard tile URL placeholders `{x}`, `{y}` and
`{z}`/`{zoom}`, `{ty}` for flipped TMS-style Y coordinates, and `{switch:a,b,c}` for
Expand All @@ -33,7 +33,7 @@ of iD (e.g. `http://preview.ideditor.com/release/`), the following parameters ar
_Example:_ `id=n1207480649`
* __`locale`__ - A code specifying the localization to use, affecting the language, layout, and keyboard shortcuts. The default locale is set by the browser.<br/>
_Example:_ `locale=en-US`, `locale=de`<br/>
_Available values:_ Any of the [supported locales](https://github.com/openstreetmap/iD/tree/master/dist/locales).
_Available values:_ Any of the [supported locales](https://github.com/openstreetmap/iD/tree/develop/dist/locales).
* __`map`__ - A slash-separated `zoom/latitude/longitude`.<br/>
_Example:_ `map=20.00/38.90085/-77.02271`
* __`maprules`__ - A path to a [MapRules](https://github.com/radiant-maxar/maprules) service endpoint for enhanced tag validation.<br/>
Expand Down Expand Up @@ -123,7 +123,7 @@ have `.area` and `.way` classes.
Elements also receive classes according to certain of the OSM key-value tags that are
assigned to them.

Tag classes are prefixed with `tag-` (see [`iD.svgTagClasses`](https://github.com/openstreetmap/iD/blob/master/js/id/svg/tag_classes.js) for details).
Tag classes are prefixed with `tag-` (see [`iD.svgTagClasses`](https://github.com/openstreetmap/iD/blob/develop/js/id/svg/tag_classes.js) for details).

#### Primary

Expand Down Expand Up @@ -240,7 +240,7 @@ Optional properties:
* `best` - If set to `true`, this imagery is considered "better than Bing" and may be chosen by default when iD starts. Will display with a star in the background imagery list. Defaults to `false`

For more details about the `iD.data.imagery` structure, see
[`update_imagery.js`](https://github.com/openstreetmap/iD/blob/master/scripts/update_imagery.js).
[`update_imagery.js`](https://github.com/openstreetmap/iD/blob/develop/scripts/update_imagery.js).


### Presets
Expand All @@ -249,7 +249,7 @@ iD's preset database is stored in the `iD.data.presets` object and can be overri
or modified prior to creating the iD context.

The format of the `presets` object is
[documented here](https://github.com/openstreetmap/iD/tree/master/data/presets#custom-presets).
[documented here](https://github.com/openstreetmap/iD/tree/develop/data/presets#custom-presets).

To add a new preset to iD's existing preset database.
```js
Expand Down
12 changes: 6 additions & 6 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ rendering the map data as well as many sorts of general DOM manipulation tasks
for which jQuery would often be used.

Notable features of d3 that are used by iD include
[d3.fetch](https://github.com/d3/d3/blob/master/API.md#fetches-d3-fetch), which is
[d3.fetch](https://github.com/d3/d3/blob/develop/API.md#fetches-d3-fetch), which is
used to make the API requests to download data from openstreetmap.org and save changes;
[d3.dispatch](https://github.com/d3/d3/blob/master/API.md#dispatches-d3-dispatch),
[d3.dispatch](https://github.com/d3/d3/blob/develop/API.md#dispatches-d3-dispatch),
which provides a callback-based [Observer
pattern](http://en.wikipedia.org/wiki/Observer_pattern) between different
parts of iD;
[d3.geoPath](https://github.com/d3/d3/blob/master/API.md#paths), which
[d3.geoPath](https://github.com/d3/d3/blob/develop/API.md#paths), which
generates SVG paths for lines and areas; and
[d3.zoom](https://github.com/d3/d3/blob/master/API.md#zooming-d3-zoom),
[d3.zoom](https://github.com/d3/d3/blob/develop/API.md#zooming-d3-zoom),
which implements map panning and zooming.


Expand Down Expand Up @@ -233,7 +233,7 @@ of duplicating the code to implement this behavior in all these modes, we
extract it to `iD.behaviorHover`.

_Behaviors_ take their inspiration from [d3's
behaviors](https://github.com/d3/d3/blob/master/API.md). Like d3's `zoom`
behaviors](https://github.com/d3/d3/blob/develop/API.md). Like d3's `zoom`
and `drag`, each iD behavior is a function that takes as input a d3 selection
(assumed to consist of a single element) and installs the DOM event bindings
necessary to implement the behavior. The `Hover` behavior, for example,
Expand Down Expand Up @@ -342,7 +342,7 @@ argument is required, a `context`.

The constructor function returns a draw function which accepts a d3 selection.
Drawing is then accomplished with
[d3.selection#call](https://github.com/d3/d3-selection/blob/master/README.md#selection_call):
[d3.selection#call](https://github.com/d3/d3-selection/blob/develop/README.md#selection_call):

```js
footer = footer.enter()
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ _Breaking changes, which may affect downstream projects or sites that embed iD,
_Find the "Add a bridge" and "Add a tunnel" fixes for each crossing in the Issues inspector._
* :earth_africa: Selected features now stay visible while zoomed out, plus you can zoom to multiple features together.<br/>
_Select a few large features and press <kbd>Z</kbd> to view their full extent, no matter how vast._
* :handshake: iD now has its own [Privacy Policy](https://github.com/openstreetmap/iD/blob/master/PRIVACY.md).<br/>
* :handshake: iD now has its own [Privacy Policy](https://github.com/openstreetmap/iD/blob/develop/PRIVACY.md).<br/>
_Press <kbd>P</kbd> to view privacy preferences._

#### :boom: Breaking Changes
Expand Down Expand Up @@ -2621,7 +2621,7 @@ _Activate the Bing Streetside layer by opening the Map Data pane (shortcut <kbd>
* Added support for more icon sets (such as [FontAwesome](https://fontawesome.com/icons?d=gallery)) for presets or other iD icons ([#3025])
* Extracted many preset icons from the iD sprite into a separate project: [bhousel/temaki](https://github.com/bhousel/temaki)
* Many presets that previously did not have a suitable icon now have one.
* :warning: All icons in iD now use prefixed names. (e.g. `iD-`, `maki-`, etc). See the [preset README](https://github.com/openstreetmap/iD/blob/master/data/presets/README.md#icons) for more details.
* :warning: All icons in iD now use prefixed names. (e.g. `iD-`, `maki-`, etc). See the [preset README](https://github.com/openstreetmap/iD/blob/develop/data/presets/README.md#icons) for more details.

[#5050]: https://github.com/openstreetmap/iD/issues/5050
[#3924]: https://github.com/openstreetmap/iD/issues/3924
Expand Down Expand Up @@ -4685,7 +4685,7 @@ _Map traffic signals, stop signs, benches, crossings, street lamps, fountains, t
* Many deprecated names are still exported as symbols, e.g. `iD.Context` - we will remove these eventually
* :warning: Customized iD deployments can manipulate live objects, rather than iD.Context accessors
* No longer need to call things like `presets()`, `imagery()`, `taginfo()` when creating `iD.Context`
* See [API.md](https://github.com/openstreetmap/iD/blob/master/API.md#customized-deployments) for details on customized deployments
* See [API.md](https://github.com/openstreetmap/iD/blob/develop/API.md#customized-deployments) for details on customized deployments
* :warning: iD has upgraded to the latest released versions of d3, lodash, rbush, etc.
* d3 no longer adds itself to the global namespace, but can now be accessed via `iD.d3`
* :warning: iD now uses `npm` scripts for all build processes
Expand Down
18 changes: 9 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Work in Progress. Don't start work on these, somebody else already did!

## Verifying Bug Fixes

To verify a bug fix (or test a new feature), use the [master deployment](http://preview.ideditor.com/master/)
To verify a bug fix (or test a new feature), use the [develop deployment](http://preview.ideditor.com/master/)
(http://preview.ideditor.com/master/), which is updated every 10 minutes with the
latest code and translation strings.

Expand Down Expand Up @@ -228,7 +228,7 @@ project** button near the bottom of the project page. You can edit your
getting too many notifications.

Translations are licensed under
[ISC](https://raw.github.com/openstreetmap/iD/master/LICENSE.md), the same license
[ISC](https://raw.github.com/openstreetmap/iD/develop/LICENSE.md), the same license
as iD.

**Why are there so many duplicate "Type" translations?** There are multiple
Expand Down Expand Up @@ -398,7 +398,7 @@ Additionally here is a step-by-step workflow example for beginners:

4. Clone or download your local copy of iD from your GitHub account using https `git clone https://github.com/<yourgithubaccount>/iD.git` or using ssh `git clone git@github.com:{{yourgithubaccount}}/iD.git`. In your local copy you'll have a "remote" called origin.

5. Switch to the iD directory, create a working branch (choose a descriptive name) and switch to it : `cd iD ; git checkout -b <working-branch-name>`. Never do anything in master branch.
5. Switch to the iD directory, create a working branch (choose a descriptive name) and switch to it : `cd iD ; git checkout -b <working-branch-name>`. Never do anything in develop branch.

6. Edit file(s) and try your change locally (See above).

Expand All @@ -419,13 +419,13 @@ you can clean up by deleting the branch from your GitHub-iD-Clone and your local

### Restart with another PR after some while

If you did not use your copy of iD for some while, other Pull Request gets merged and you don't have the latest version of iD. You can replace your master with whatever is in our master. If you have not done so yet: Add the main repo as an "upstream" remote:
If you did not use your copy of iD for some while, other Pull Request gets merged and you don't have the latest version of iD. You can replace your develop with whatever is in our develop. If you have not done so yet: Add the main repo as an "upstream" remote:

`git remote add upstream git@github.com:openstreetmap/iD.git`

Then change to the master branch and get everything from upstream (the main repository)
Then change to the develop branch and get everything from upstream (the main repository)

`git checkout master ; git fetch --all && git reset --hard upstream/master`
`git checkout develop ; git fetch --all && git reset --hard upstream/develop`


## Submitting directly in the Browser
Expand All @@ -442,12 +442,12 @@ Additionally here is a step-by-step workflow example for beginners:

2. Go to the [iD main repository](https://github.com/openstreetmap/iD) and fork iD into your GitHub account (Fork is top right).

3. Create a New Branch by clicking on "Branch: master" and entering the name of a new branch (choose a descriptive name).
3. Create a New Branch by clicking on "Branch: develop" and entering the name of a new branch (choose a descriptive name).

4. Navigate to the file you want to edit and click on "Edit this file" and apply your changes to the file. Alternatively, you could also "Create a new file".

5. When finished editing the file enter a commit text (the description is optional) and commit directly to the newly created branch. You may repeat 4 and 5 until all required changes are commited.
5. When finished editing the file enter a commit text (the description is optional) and commit directly to the newly created branch. You may repeat 4 and 5 until all required changes are committed.

6. Navigate back to your "id" project - https://github.com/{{yourgithubaccount}}/iD

7. Follow this [Article about Pull Requests](https://help.github.com/articles/about-pull-requests/) to create a new pull request for your change
7. Follow this [Article about Pull Requests](https://help.github.com/articles/about-pull-requests/) to create a new pull request for your change
4 changes: 2 additions & 2 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Two syllables: "eye dee".

## How can I help translate iD into another language or fix a mistranslation?

Please see [CONTRIBUTING.md](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating)
Please see [CONTRIBUTING.md](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating)


## How can I report an issue with background imagery?
Expand Down Expand Up @@ -71,7 +71,7 @@ and [configure](https://github.com/openstreetmap/openstreetmap-website/blob/mast
an instance of the Rails Port, the server that runs the OpenStreetMap website and API.

Once you have the Rails Port running, you may edit as normal using the version of iD that
is bundled with it. Your changes will be saved to your own database. To use a standalone iD with your own api, you may edit the [osm.js](https://github.com/openstreetmap/iD/blob/master/modules/services/osm.js) file.
is bundled with it. Your changes will be saved to your own database. To use a standalone iD with your own api, you may edit the [osm.js](https://github.com/openstreetmap/iD/blob/develop/modules/services/osm.js) file.

Depending on your requirements, you may also want to set up [cgimap](https://github.com/openstreetmap/cgimap)
and/or a tile rendering stack, but neither of these are required for editing with iD.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# iD - friendly JavaScript editor for [OpenStreetMap](https://www.openstreetmap.org/)

[![Build Status](https://travis-ci.org/openstreetmap/iD.svg?branch=master)](https://travis-ci.org/openstreetmap/iD)
[![Build Status](https://travis-ci.org/openstreetmap/iD.svg?branch=develop)](https://travis-ci.org/openstreetmap/iD)


:warning: _We've recently changed our branch names. [`develop`](https://github.com/openstreetmap/iD/tree/develop) is now the default branch, replacing `2.x`. [`v3-prototype`](https://github.com/openstreetmap/iD/tree/v3-prototype) is now the alpha version of iD v3, replacing `master`. [`release`](https://github.com/openstreetmap/iD/tree/release) is still `release`._
Expand All @@ -24,7 +24,7 @@
* Read up on [Contributing and the code style of iD](CONTRIBUTING.md).
* See [open issues in the issue tracker](https://github.com/openstreetmap/iD/issues?state=open)
if you're looking for something to do.
* [Translate!](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating)
* [Translate!](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating)
* Test a prerelease version of iD:
* Stable mirror of `release` branch: https://preview.ideditor.com/release
* Development mirror of `develop` branch + latest translations: https://2-x--ideditor.netlify.com
Expand Down
10 changes: 5 additions & 5 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ $ git remote add osmlab git@github.com:osmlab/openstreetmap-website.git
$ git remote add upstream git@github.com:openstreetmap/openstreetmap-website.git
```

#### Sync master branches
#### Sync develop branches

```bash
$ git fetch --all
$ git checkout master
$ git reset --hard upstream/master
$ git push osmlab master
$ git checkout develop
$ git reset --hard upstream/develop
$ git push osmlab develop
```

#### Create and push branch with the new iD version
Expand All @@ -72,4 +72,4 @@ $ rm -rf vendor/assets/iD/* && vendorer
$ git add . && git commit -m 'Update to iD vA.B.C'
$ git push osmlab
```
- [Open a pull request](https://github.com/openstreetmap/openstreetmap-website/compare/master...osmlab:master) using the [markdown text from the changelog](https://raw.githubusercontent.com/openstreetmap/iD/master/CHANGELOG.md) as the description
- [Open a pull request](https://github.com/openstreetmap/openstreetmap-website/compare/develop...osmlab:develop) using the [markdown text from the changelog](https://raw.githubusercontent.com/openstreetmap/iD/develop/CHANGELOG.md) as the description
2 changes: 1 addition & 1 deletion data/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ en:
before_start: "You should be familiar with OpenStreetMap and this editor before you start editing. iD contains a walkthrough to teach you the basics of editing OpenStreetMap. Click \"Start the Walkthrough\" on this screen to take the tutorial - it takes only about 15 minutes."
open_source_h: "Open Source"
open_source: "The iD editor is a collaborative open source project, and you are using version {version} now. The source code is available [on GitHub](https://github.com/openstreetmap/iD)."
open_source_help: "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
open_source_help: "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
overview:
title: Overview
navigation_h: "Navigation"
Expand Down
6 changes: 3 additions & 3 deletions data/presets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The complete JSON schema for presets can be found in [`data/presets/schema/prese

The primary name of the feature type in American English.

Upon merging with `master`, this is sent to Transifex for translating to other localizations. Changing the name of an existing preset will require it to be re-translated to all localizations.
Upon merging with `develop`, this is sent to Transifex for translating to other localizations. Changing the name of an existing preset will require it to be re-translated to all localizations.

This property is required. There is no default.

Expand Down Expand Up @@ -149,7 +149,7 @@ preset are generally not inherited. E.g. the `shop` field is not inherited by `s

The name of a local SVG icon file. You can use icons from any of the following icon sets. When specifying an icon, use the prefixed version of the name, for example `"icon": "maki-park"` or `"icon": "tnp-2009223"`.

* [iD's spritesheet](https://github.com/openstreetmap/iD/tree/master/svg/iD-sprite/presets) (`iD-`)
* [iD's spritesheet](https://github.com/openstreetmap/iD/tree/develop/svg/iD-sprite/presets) (`iD-`)
* [Maki](https://labs.mapbox.com/maki-icons/) (`maki-`), map-specific icons from Mapbox
* [Temaki](https://ideditor.github.io/temaki/docs/) (`temaki-`), an expansion pack for Maki
* This is the best place to submit a PR if you want to create a preset icon!
Expand Down Expand Up @@ -508,4 +508,4 @@ A "name" field must be included:
"label": "Name",
"placeholder": "Common name (if any)"
}
```
```
2 changes: 1 addition & 1 deletion dist/locales/ar.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/bg.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/ca.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/cs.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/da.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/de.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/el.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/en-GB.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1519,7 +1519,7 @@
"before_start": "You should be familiar with OpenStreetMap and this editor before you start editing. iD contains a walkthrough to teach you the basics of editing OpenStreetMap. Click \"Start the Walkthrough\" on this screen to take the tutorial - it takes only about 15 minutes.",
"open_source_h": "Open Source",
"open_source": "The iD editor is a collaborative open source project, and you are using version {version} now. The source code is available [on GitHub](https://github.com/openstreetmap/iD).",
"open_source_help": "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
"open_source_help": "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
},
"overview": {
"title": "Overview",
Expand Down
2 changes: 1 addition & 1 deletion dist/locales/eo.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/es.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/fa.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/fi.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/fr.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/gl.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/he.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/hu.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/is.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/it.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/ja.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/ko.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/lv.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/mg.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/nl.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/no.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/pl.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/pt-BR.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/pt.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/ru.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/sq.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/sv.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/tr.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/uk.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/vi.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/zh-CN.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/locales/zh-TW.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/ui/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export function uiInit(context) {
issueLinks
.append('a')
.attr('target', '_blank')
.attr('href', 'https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating')
.attr('href', 'https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating')
.call(svgIcon('#iD-icon-translate', 'light'))
.call(tooltip().title(t('help_translate')).placement('top'));

Expand Down
2 changes: 1 addition & 1 deletion modules/ui/sections/background_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function uiSectionBackgroundList(context) {
.append('a')
.attr('target', '_blank')
.call(svgIcon('#iD-icon-out-link', 'inline'))
.attr('href', 'https://github.com/openstreetmap/iD/blob/master/FAQ.md#how-can-i-report-an-issue-with-background-imagery')
.attr('href', 'https://github.com/openstreetmap/iD/blob/develop/FAQ.md#how-can-i-report-an-issue-with-background-imagery')
.append('span')
.text(t('background.imagery_problem_faq'));

Expand Down
Loading

3 comments on commit d669bbe

@peternewman
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When should this be live on the website @quincylvania ? The Translate link bottom right of iD is still broken now, even in private browsing mode:
https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating

I'm pretty certain I'm using en-GB if it matters?

@quincylvania
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@peternewman We're very close to a patch release that will include this. Within a week or so.

@peternewman
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's good to hear, given it's been broken for a month, would it be worth leaving a master branch with just that readme file in, or are you worried about people getting confused if they haven't got the memo for normal development?

Please sign in to comment.