Skip to content

Commit

Permalink
Translations added, new release
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmusfjord committed Oct 25, 2016
1 parent 4bfad6d commit d305b61
Show file tree
Hide file tree
Showing 14 changed files with 1,094 additions and 13 deletions.
Binary file added releases/github/Skybrud.LinkPicker.v1.0.13.zip
Binary file not shown.
Binary file added releases/github/Skybrud.LinkPicker.v1.0.14.zip
Binary file not shown.
Binary file added releases/nuget/Skybrud.LinkPicker.1.0.13.nupkg
Binary file not shown.
Binary file added releases/nuget/Skybrud.LinkPicker.1.0.14.nupkg
Binary file not shown.
Binary file added releases/umbraco/Skybrud.LinkPicker.v1.0.13.zip
Binary file not shown.
Binary file added releases/umbraco/Skybrud.LinkPicker.v1.0.14.zip
Binary file not shown.
1,038 changes: 1,038 additions & 0 deletions src/.vs/config/applicationhost.config

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<language alias="da" intName="Danish" localName="dansk" lcid="6" culture="da-DK">
<area alias="linkpicker">
<key alias="addLink">Tilføj link</key>
<key alias="type">Type</key>
<key alias="id">ID</key>
<key alias="name">Navn</key>
<key alias="url">Url</key>
<key alias="target">Target</key>
</area>
</language>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<language alias="en" intName="English" localName="English" lcid="6" culture="en-GB">
<area alias="linkpicker">
<key alias="addLink">Add link</key>
<key alias="type">Type</key>
<key alias="id">ID</key>
<key alias="name">Name</key>
<key alias="url">Url</key>
<key alias="target">Target</key>
</area>
</language>
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,31 @@
</li>
</ul>
<div class="actions">
<a class="link" href="#" prevent-default="" ng-click="addLink()" ng-show="!config.limit || value.items.length < config.limit">Add link <i class="icon icon-add"></i></a>
<a class="link" href="#" prevent-default="" ng-click="addLink()" ng-show="!config.limit || value.items.length < config.limit">
<localize key="linkpicker_addLink">Add link</localize>
<i class="icon icon-add"></i>
</a>
</div>
</div>
<div class="table" ng-show="config.showTable">
<table ng-show="value.items.length">
<thead>
<tr>
<th ng-show="config.columns.type">Type</th>
<th ng-show="config.columns.id">ID</th>
<th ng-show="config.columns.name">Name</th>
<th ng-show="config.columns.url">Url</th>
<th ng-show="config.columns.target">Target</th>
<th ng-show="config.columns.type">
<localize key="linkpicker_type">Type</localize>
</th>
<th ng-show="config.columns.id">
<localize key="linkpicker_id">ID</localize>
</th>
<th ng-show="config.columns.name">
<localize key="linkpicker_name">Name</localize>
</th>
<th ng-show="config.columns.url">
<localize key="linkpicker_url">Url</localize>
</th>
<th ng-show="config.columns.target">
<localize key="linkpicker_target">Target</localize>
</th>
<th>&nbsp;</th>
</tr>
</thead>
Expand All @@ -43,7 +56,10 @@
</tbody>
</table>
<div class="actions">
<a class="link" href="#" prevent-default="" ng-click="addLink()" ng-show="!config.limit || value.items.length < config.limit">Add link <i class="icon icon-add"></i></a>
<a class="link" href="#" prevent-default="" ng-click="addLink()" ng-show="!config.limit || value.items.length < config.limit">
<localize key="linkpicker_addLink">Add link</localize>
<i class="icon icon-add"></i>
</a>
</div>
</div>
</div>
4 changes: 2 additions & 2 deletions src/Skybrud.LinkPicker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.12.0")]
[assembly: AssemblyInformationalVersion("1.0.12")]
[assembly: AssemblyVersion("1.0.14.0")]
[assembly: AssemblyInformationalVersion("1.0.14")]
6 changes: 3 additions & 3 deletions src/Skybrud.LinkPicker/Properties/AssemblyInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"company": "Skybrud.dk",
"product": "Skybrud.PropertyEditors",
"copyright": "Copyright © 2016",
"version": "1.0.12.0",
"informationalVersion": "1.0.12",
"fileVersion": "0.0.571.2"
"version": "1.0.14.0",
"informationalVersion": "1.0.14",
"fileVersion": "0.0.578.2"
}
2 changes: 1 addition & 1 deletion src/Skybrud.LinkPicker/Properties/AssemblyInfoGenerated.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;

[assembly: AssemblyFileVersion("0.0.571.2")]
[assembly: AssemblyFileVersion("0.0.578.2")]

3 changes: 3 additions & 0 deletions src/Skybrud.LinkPicker/Skybrud.LinkPicker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -244,6 +245,8 @@
<Content Include="App_Plugins\Skybrud.LinkPicker\Controllers\LinkPickerGridEditor.js" />
<Content Include="App_Plugins\Skybrud.LinkPicker\Controllers\LinkPickerPreValues.js" />
<Content Include="App_Plugins\Skybrud.LinkPicker\Directives\LinkPicker.js" />
<Content Include="App_Plugins\Skybrud.LinkPicker\Lang\da-DK.xml" />
<Content Include="App_Plugins\Skybrud.LinkPicker\Lang\en-GB.xml" />
<Content Include="App_Plugins\Skybrud.LinkPicker\Services\LinkPickerService.js" />
<Content Include="App_Plugins\Skybrud.LinkPicker\Styles\LinkPicker.css">
<DependentUpon>LinkPicker.less</DependentUpon>
Expand Down

0 comments on commit d305b61

Please sign in to comment.