Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use language string #1224

Closed
Quy opened this issue Apr 8, 2015 · 29 comments
Closed

Use language string #1224

Quy opened this issue Apr 8, 2015 · 29 comments
Assignees
Labels
Milestone

Comments

@Quy
Copy link
Contributor

Quy commented Apr 8, 2015

<a href="register.php" class="navbar-brand"><span class="fa fa-fw fa-user"></span> Register</a>

PS: Please don't close this ticket yet as there maybe more.

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<h2 style="margin-top: 60px;">We've got us a situation here</h2>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<input class="form-control" type="text" name="keywords" placeholder="Search in posts" maxlength="100" />

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<?php echo forum_number_format($user_data['num_posts']) ?> posts since <?php echo format_time($user_data['registered'], true) ?>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<label class="col-sm-3 control-label">Avatar<span class="help-block"><?php echo $lang['Avatar info'] ?></span></label>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<label class="col-sm-3 control-label">Signature<span class="help-block"><?php echo $lang['Signature info'] ?></span></label>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<li><a class="pull-right" href="notifications.php">More <i class="fa fa-fw fa-arrow-right"></i></a></li>

<h3><?php echo $lang['New notifications'] ?><span class="pull-right"><a href="notifications.php?id=2&action=readnoti" class="btn btn-primary"><span class="fa fa-fw fa-eye"></span> Mark as seen</a></span></h3>

<h3><?php echo $lang['Seen notifications'] ?><span class="pull-right"><a href="notifications.php?id=2&action=delnoti" class="btn btn-danger"><span class="fa fa-fw fa-trash"></span> Delete notifications</a></span></h3>

@Studio384 Studio384 added this to the Luna 1.0 Aero milestone Apr 8, 2015
@Studio384 Studio384 self-assigned this Apr 8, 2015
@Studio384
Copy link
Member

In case you might run into the About.php page, that is intentional. Thanks for reporting.

@Studio384
Copy link
Member

This commit should fix everything reported so far, I'll leave this ticket open for other reports of missing strings until 13 April.

Studio384 pushed a commit that referenced this issue Apr 8, 2015
@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<input type="text" class="form-control" name="name" placeholder="Name" value="" />

<input type="text" class="form-control" name="url" placeholder="URL" value="" />

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

echo 'This theme has no settings available...';

echo '<a class="btn btn-primary disabled">In use</a>';

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<td><input type="text" class="form-control" name="new_forum" maxlength="80" placeholder="Forum name" required="required" /></td>

<td><input type="text" class="form-control" name="new_cat_name" maxlength="80" placeholder="Category name" tabindex="1" /></td>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<h2 class="profile-settings-head">Settings<span class="pull-right"><button class="btn btn-primary" type="submit" name="update"><span class="fa fa-fw fa-check"></span> <?php echo $lang['Save'] ?></button></span></h2>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<a href="help.php" class="navbar-brand"><span class="fa fa-fw fa-info-circle"></span> Help</a>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<title>Backstage</title>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<a href="#" data-toggle="modal" data-target="#login-form" data-dismiss="modal">Back</a>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<a href="search.php" class="list-group-item">Search the board</a>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<label class="col-sm-3 control-label"><?php echo $lang['Send to'] ?><span class="help-block">Separate names with commas, maximum <?php echo ($luna_config['o_pms_max_receiver']-1) ?> names</span></label>

<h3 class="panel-title">Inbox messages</h3>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<input type="submit" class="btn btn-danger" name="soft_delete" value="Soft delete" />

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

<h2>Edit "<?php echo luna_htmlspecialchars($cur_post['subject']) ?>"</h2><span class="pull-right"><a class="btn btn-danger" href="viewtopic.php?id=<?php echo $cur_post['tid'] ?>"><span class="fa fa-fw fa-chevron-left"></span> Cancel</a></span>

@Quy
Copy link
Contributor Author

Quy commented Apr 8, 2015

        <?php if ($fid) { ?>
            <h2><?php printf($lang['New topic in'], luna_htmlspecialchars($cur_posting['forum_name'])) ?></h2><span class="pull-right"><a class="btn btn-danger" href="index.php?id=<?php echo $cur_posting['id'] ?>"><span class="fa fa-fw fa-chevron-left"></span> Cancel</a></span>
        <?php } else { ?>
            <h2><?php printf($lang['New comment in'], luna_htmlspecialchars($cur_posting['subject'])) ?></h2><span class="pull-right"><a class="btn btn-danger" href="viewtopic.php?id=<?php echo $cur_posting['id'] ?>"><span class="fa fa-fw fa-chevron-left"></span> Cancel</a></span>
        <?php } ?>

@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

$ind_notification[] = '<li><a href="notifications.php">No new notifications</a></li>';

Studio384 pushed a commit that referenced this issue Apr 9, 2015
@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

<input type="submit" class="btn btn-danger" name="soft_delete" value="Soft delete" />

<input type="submit" class="btn btn-primary" name="reset" value="Reset post" />

@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

<input type="submit" class="btn btn-primary btn-block" value="Login" />

Studio384 pushed a commit that referenced this issue Apr 9, 2015
@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

<h3 class="panel-title">Moderate content</h3>

Studio384 pushed a commit that referenced this issue Apr 9, 2015
@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

Don't know if you want to translate Copyright.
echo 'Copyright &copy; '.date('Y').' &middot; '.$luna_config['o_board_title'];

@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

<h2>Moderating "<?php echo luna_htmlspecialchars($cur_forum['forum_name']) ?>"</h2><span class="pull-right"><?php echo $paging_links ?></span>

@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

<label class="col-sm-3 control-label">Parent section</label>

<option value="0">No parent forum selected</option>

Studio384 pushed a commit that referenced this issue Apr 9, 2015
@Quy
Copy link
Contributor Author

Quy commented Apr 9, 2015

I am done with this ticket. 👍

@Studio384
Copy link
Member

Thanks for your work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants