<?php
// $Id: spanish_services.module,v 1.1.2.4 2010/10/01 07:56:59 thecrow Exp $

/**
 * @file
 * Spanish services that extend Service Links module
 * Funded by ateneatech
 */

/**
 * Implementation of hook_service_links().
 */
function spanish_services_service_links() {
  $links = array();

  $links['_es_meneame'] = array(
    'name' => 'Meneame',
    'description' => t('Add to Meneame.'),
    'link' => 'http://www.meneame.net/submit.php?url=<encoded-url>',
  );
  $links['_es_latafanera'] = array(
    'name' => 'La Tafanera',
    'description' => t('Add to La Tafanera.'),
    'link' => 'http://latafanera.cat/submit.php?url=<encoded-url>',
  );
  $links['_es_fresqui'] = array(
    'name' => 'Fresqui',
    'description' => t('Submit this post on tec.fresqui.com.'),
    'link' => 'http://tec.fresqui.com/post?url=<encoded-url>&title=<encoded-title>',
  );
  $links['_es_barrapunto'] = array(
    'name' => 'Barrapunto',
    'description' => t('Publish this post on Barrapunto.com'),
    'link' => 'http://barrapunto.com/submit.pl?story=He+leido+en+<source>+el+articulo+<a href="<encoded-url>"><encoded-title></a>&subj=<encoded-title>',
  );
  $links['_es_tuenti'] = array(
    'name' => 'Tuenti',
    'description' => t('Share on Tuenti.'),
    'link' => 'http://www.tuenti.com/share?url=<encoded-url>',
  );

  return $links;
}
