Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #12357 from lyubomirv/bg
Browse files Browse the repository at this point in the history
Added Bulgarian translation.
  • Loading branch information
abose committed May 4, 2016
2 parents b82c987 + 876fe89 commit 7897550
Show file tree
Hide file tree
Showing 9 changed files with 1,098 additions and 0 deletions.
208 changes: 208 additions & 0 deletions samples/bg/Getting Started/index.html

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions samples/bg/Getting Started/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
html {
background: #e6e9e9;
background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
-webkit-font-smoothing: antialiased;
}

body {
background: #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
color: #545454;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0 auto;
max-width: 800px;
padding: 2em 2em 4em;
}

h1, h2, h3, h4, h5, h6 {
color: #222;
font-weight: 600;
line-height: 1.3;
}

h2 {
margin-top: 1.3em;
}

a {
color: #0083e8;
}

b, strong {
font-weight: 600;
}

samp {
display: none;
}

img {
-webkit-animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
background: transparent;
border: 10px solid rgba(0, 0, 0, 0.12);
border-radius: 4px;
display: block;
margin: 1.3em auto;
max-width: 95%;
}

@-webkit-keyframes colorize {
0% {
-webkit-filter: grayscale(100%);
}
100% {
-webkit-filter: grayscale(0%);
}
}

@keyframes colorize {
0% {
filter: grayscale(100%);
}
100% {
filter: grayscale(0%);
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/nls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ process. Please contribute changes by filing an issue in our GitHub repository h

The following languages have been contributed by the Brackets community:

* Bulgarian (bg)
* Czech (cs)
* Danish (da)
* German (de)
Expand Down
786 changes: 786 additions & 0 deletions src/nls/bg/strings.js

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions src/nls/bg/urls.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/

/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
/*global define */

define({
// Relative to the samples folder
"GETTING_STARTED" : "bg/Getting Started",
"ADOBE_THIRD_PARTY" : "http://www.adobe.com/go/thirdparty/",
"WEB_PLATFORM_DOCS_LICENSE" : "http://creativecommons.org/licenses/by/3.0/deed.bg"
});
1 change: 1 addition & 0 deletions src/nls/root/strings-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ define({
"APP_NAME" : "Brackets",

// Self locales (used by Debug > Switch Language)
"LOCALE_BG" : "български",
"LOCALE_CS" : "čeština",
"LOCALE_DA" : "Dansk",
"LOCALE_DE" : "Deutsch",
Expand Down
1 change: 1 addition & 0 deletions src/nls/strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ define(function (require, exports, module) {
// TODO: dynamically populate the local prefix list below?
module.exports = {
root: true,
"bg": true,
"cs": true,
"da": true,
"de": true,
Expand Down
1 change: 1 addition & 0 deletions src/nls/urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ define(function (require, exports, module) {
// TODO: dynamically populate the local prefix list below?
module.exports = {
root: true,
"bg": true,
"cs": true,
"da": true,
"de": true,
Expand Down

0 comments on commit 7897550

Please sign in to comment.