Skip to content

Commit d44b98b

Browse files
authored
Merge pull request BlogEngine#229 from mainmind83/google_fonts_https
Google fonts https
2 parents 32c91ec + dcb6925 commit d44b98b

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,3 +186,5 @@ BlogEngine/.vs/
186186

187187
# Default extensions data
188188
BlogEngine/BlogEngine.NET/App_Data/datastore/extensions/*.xml
189+
/.vs/slnx.sqlite
190+
/.vs/BlogEngine.NET/config/applicationhost.config

BlogEngine/BlogEngine.NET/Account/account.master

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<head id="Head1" runat="server">
77
<title>Account Login</title>
88
<meta name="description" content="Account Login Membership User Password" />
9-
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500' rel='stylesheet' type='text/css'>
9+
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500' rel='stylesheet' type='text/css'>
1010
<link href="account.css" rel="stylesheet" />
1111
<script src="../Scripts/jquery-2.1.4.min.js"></script>
1212
<script type="text/javascript" src="account.js"></script>

BlogEngine/BlogEngine.NET/App_GlobalResources/labels.es.resx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@
296296
<data name="contact" xml:space="preserve">
297297
<value>Contactarnos</value>
298298
</data>
299+
<data name="share" xml:space="preserve">
300+
<value>Compartir</value>
301+
</data>
299302
<data name="contactForm" xml:space="preserve">
300303
<value>Formulario de Contacto</value>
301304
</data>
@@ -1736,4 +1739,4 @@
17361739
<data name="phoneMain" xml:space="preserve">
17371740
<value>Teléfono</value>
17381741
</data>
1739-
</root>
1742+
</root>

BlogEngine/BlogEngine.NET/App_GlobalResources/labels.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2594,4 +2594,7 @@
25942594
<data name="changeName" xml:space="preserve">
25952595
<value>Change Name</value>
25962596
</data>
2597+
<data name="share" xml:space="preserve">
2598+
<value>Share</value>
2599+
</data>
25972600
</root>

BlogEngine/BlogEngine.NET/Custom/Themes/Standard/PostView.ascx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@
7575
{%><span class="post-category"><i class="fa fa-folder-open"></i> <%=postCategory %></span>
7676
<% } %>
7777
<div class="dropdown post-share float-md-right">
78-
<a class="dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-share-alt"></i>share</a>
78+
<a class="dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-share-alt"></i><%=Resources.labels.share %></a>
7979
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuLink">
8080
<a class="dropdown-item item-fb" href="https://www.addtoany.com/add_to/facebook?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-facebook-square"></i>Facebook</a>
8181
<a class="dropdown-item item-tw" href="https://www.addtoany.com/add_to/twitter?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-twitter-square"></i>Twitter</a>
8282
<a class="dropdown-item item-gp" href="https://www.addtoany.com/add_to/google_plus?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-google-plus-square"></i>Google +</a>
8383
<a class="dropdown-item item-ln" href="https://www.addtoany.com/add_to/linkedin?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-linkedin-square"></i>LinkedIn</a>
8484
<a class="dropdown-item item-pi" href="https://www.addtoany.com/add_to/pinterest?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-pinterest-square"></i>Pinterest</a>
8585
<a class="dropdown-item item-em" href="https://www.addtoany.com/add_to/email?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-envelope-square"></i>Email</a>
86-
<a class="dropdown-item item-em" href="https://www.addtoany.com/share?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-plus-square"></i>Share...</a>
86+
<a class="dropdown-item item-em" href="https://www.addtoany.com/share?linkurl=<%=Post.AbsoluteLink %>&amp;linkname=<%=postTitle %>" target="_blank"><i class="fa fa-plus-square"></i><%=Resources.labels.share %>...</a>
8787
</div>
8888
</div>
8989
</div>

BlogEngine/BlogEngine.NET/admin/app/editor/filemanager.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<html data-ng-app="blogAdmin">
2525
<head>
2626
<meta charset="utf-8" />
27-
<link href='http://fonts.googleapis.com/css?family=Roboto:300,400,500' rel='stylesheet' type='text/css'>
27+
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500' rel='stylesheet' type='text/css'>
2828
@Styles.Render("~/Content/admincss")
2929
<link href="~/admin/themes/standard/css/styles.css" rel="stylesheet" type="text/css" />
3030
<script type="text/javascript">

BlogEngine/BlogEngine.NET/admin/themes/standard/layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2525
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
2626
<title>@BlogSettings.Instance.Name (@Security.CurrentMembershipUser.UserName)</title>
27-
<link href="http://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
27+
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
2828
@Styles.Render("~/Content/admincss")
2929
<link href="~/admin/themes/standard/css/styles.css?ver=4" rel="stylesheet">
3030
<link rel="shortcut icon" href="@Href(Utils.ApplicationRelativeWebRoot + "Content/images/blog/blogengine.ico")" type="image/x-icon" />

0 commit comments

Comments
 (0)