Skip to content

Commit

Permalink
Edited some descriptions about Blogsonic
Browse files Browse the repository at this point in the history
  • Loading branch information
antogno committed Mar 27, 2023
1 parent 6c5a530 commit 6bf6f63
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Blogsonic is a simple CRUD Web Application in PHP.

## What is Blogsonic?

Blogsonic is an open source project. More specifically, is a CRUD Web Application. It could be defined as a mini Social Network that allows you to post text content (called Blogs) visible to all.
Blogsonic is a simple CRUD Web Application in PHP. It could be defined as a mini Social Network that allows you to post text content (called Blogs) visible to all.

> **Note**: The existence of Blogsonic has the sole purpose of showing a very basic example of a CRUD Web Application. This means that not much attention has been paid to the general appereance of the website and to the code and its structure. Therefore, Blogsonic **should not** be used as a reference point in these respects, but should be considered as a starting point for beginners from which to start understanding the basic concepts.
Expand Down
8 changes: 4 additions & 4 deletions application/language/english/blogsonic_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@

$lang['home_1'] = 'Welcome to Blogsonic!';
$lang['home_2'] = 'What is Blogsonic?';
$lang['home_3'] = 'Blogsonic is an open source project. It could be defined as a mini Social Network that allows you to post text content (called Blogs) visible to all.';
$lang['home_3'] = 'Blogsonic is a simple CRUD Web Application. It could be defined as a mini Social Network that allows you to post text content (called Blogs) visible to all.';
$lang['home_4'] = 'Why?';
$lang['home_5'] = 'The existence of Blogsonic has the sole purpose of showing an example of a CRUD Web Application. For more information,';
$lang['home_6'] = 'click here';

$lang['about_1'] = 'Welcome to the About page of Blogsonic!';
$lang['about_2'] = 'What is Blogsonic?';
$lang['about_3'] = 'Blogsonic is an open source project. More specifically, is a CRUD Web Application.';
$lang['about_3'] = 'Blogsonic is a simple CRUD Web Application. It could be defined as a mini Social Network that allows you to post text content (called Blogs) visible to all.';
$lang['about_4'] = 'How was Blogsonic created?';
$lang['about_5'] = 'Blogsonic was created using the following tools and technologies';
$lang['about_6'] = 'Front-end';
Expand Down Expand Up @@ -164,8 +164,8 @@
$lang['privacy_policy_15'] = 'For more information on our Privacy policy, if you have any questions, or if you want to make a complaint, please contact us using this email address:';

$lang['404_meta_description'] = 'The page you requested was not found.';
$lang['home_static_page_meta_description'] = 'Blogsonic is an open source project. It could be defined as a mini Social Network that allows you to post text content (called Blogs) visible to all.';
$lang['about_static_page_meta_description'] = 'Blogsonic is an open source project. More specifically, is a CRUD Web Application. It was mainly created with PHP (framework: CodeIgniter 3.1.11).';
$lang['home_static_page_meta_description'] = 'Blogsonic is a simple CRUD Web Application. It could be defined as a mini Social Network that allows you to post text content (called Blogs) visible to all.';
$lang['about_static_page_meta_description'] = 'Blogsonic is a simple CRUD Web Application. It was mainly created with PHP (framework: CodeIgniter 3.1.11).';
$lang['privacy_static_page_meta_description'] = 'This Privacy policy describes how your personal information is collected, used and shared when you visit Blogsonic (the \'Site\').';
$lang['blogs_meta_description'] = 'On Blogsonic you can create Blogs. A Blog is just like a Tweet on Twitter or a Post on Facebook. Write a title and whatever is on your mind... et voilà!';
$lang['myblogs_meta_description'] = 'If you\'re registered on Blogsonic, you can write, edit or delete Blogs. See all your posted Blogs now!';
Expand Down
54 changes: 27 additions & 27 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"name": "antogno/blogsonic",
"description": "A simple CRUD Web Application",
"type": "project",
"license": "CC0-1.0",
"authors": [
{
"name": "Antonio Granaldi",
"email": "tonio.granaldi@gmail.com"
}
],
"require": {
"php": ">=5.3.7",
"vlucas/phpdotenv": "^5.5",
"antogno/gitinfo": "^1.0"
},
"suggest": {
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
},
"require-dev": {
"mikey179/vfsstream": "1.1.*",
"phpunit/phpunit": "4.* || 5.*",
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.3",
"codeception/module-webdriver": "^1.3",
"codeception/module-db": "^1.1"
}
"name": "antogno/blogsonic",
"description": "Blogsonic is a simple CRUD Web Application in PHP",
"type": "project",
"license": "CC0-1.0",
"authors": [
{
"name": "Antonio Granaldi",
"email": "tonio.granaldi@gmail.com"
}
],
"require": {
"php": ">=5.3.7",
"vlucas/phpdotenv": "^5.5",
"antogno/gitinfo": "^1.0"
},
"suggest": {
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
},
"require-dev": {
"mikey179/vfsstream": "1.1.*",
"phpunit/phpunit": "4.* || 5.*",
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.3",
"codeception/module-webdriver": "^1.3",
"codeception/module-db": "^1.1"
}
}

0 comments on commit 6bf6f63

Please sign in to comment.